Skip to content

Commit

Permalink
updated release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
antiyro committed Oct 1, 2024
1 parent dbb2e89 commit 7866af5
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,22 @@ on:
tags:
- "v*.*.*" # Triggers on version tags like v1.0.0

permissions:
contents: write

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 7866af5

Please sign in to comment.