Skip to content

Commit

Permalink
feat(ci): Updated workflow for release (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
antiyro authored Oct 1, 2024
1 parent a937d17 commit a22ccb0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,19 @@ permissions:
jobs:
create_release:
runs-on: ubuntu-latest

permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.RELEASE_ACTION }}
tag: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
commit: ${{ github.sha }}
draft: false
prerelease: false
generateReleaseNotes: true
generateReleaseNotes: true

0 comments on commit a22ccb0

Please sign in to comment.