diff options
| author | Christian Cleberg <[email protected]> | 2026-07-14 20:14:17 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-07-14 20:14:17 -0500 |
| commit | 7ffcbb88ad9dceb6a1258b64df90a9e5cf1793bf (patch) | |
| tree | 2a65325917ee91ca847f453656143a56d4ad3c0b | |
| parent | b97e7e1281bc33b873532938495aa02ed5cbb418 (diff) | |
| download | devianter-7ffcbb88ad9dceb6a1258b64df90a9e5cf1793bf.tar.gz devianter-7ffcbb88ad9dceb6a1258b64df90a9e5cf1793bf.tar.bz2 devianter-7ffcbb88ad9dceb6a1258b64df90a9e5cf1793bf.zip | |
fix: convert deprecated release action
| -rw-r--r-- | .github/workflows/release.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b14f7ed..a936364 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,11 +11,10 @@ jobs: steps: - uses: actions/checkout@v7 - name: Create Release - uses: actions/create-release@v1 + uses: elgohr/Github-Release-Action@v5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false + title: Release ${{ github.ref }} + tag: ${{ github.ref }} prerelease: false |
