From 89deb023a11e9201a6796a31c6fba1b29e307310 Mon Sep 17 00:00:00 2001 From: lukas Date: Tue, 30 Jan 2024 22:03:36 +0100 Subject: [PATCH] fix: use maintained release action --- .github/workflows/publish.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 85f7ca2..e48a47c 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -15,14 +15,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - uses: ncipollo/release-action@v1 with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref }} draft: false prerelease: contains(github.ref_name, 'alpha') || contains(github.ref_name, 'beta')