From af793816f6c6978c5779b7f7f2a0c92aa9f37c9b Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Sun, 30 Oct 2022 13:06:13 +0400 Subject: Migrated to ncipollo/release-action --- .github/workflows/release.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index efcf3ac..9299709 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,14 +9,12 @@ jobs: steps: - name: Create Release id: create_release - uses: actions/create-release@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: ncipollo/release-action@v1 with: - tag_name: ${{ github.event.repository.updated_at}} - release_name: Release ${{ github.event.repository.updated_at}} + token: ${{ secrets.GITHUB_TOKEN }} + tag: ${{ github.event.repository.updated_at}} + name: Release ${{ github.event.repository.updated_at}} draft: true - prerelease: false - name: Output Release URL File run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt - name: Save Release URL File for publish -- cgit v1.2.3