Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Jun 9, 2024
1 parent 1c7f673 commit 6c5f44d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,23 @@ jobs:
uses: actions/checkout@v4

- name: Setup Release
id: setup_release
id: setup-release
uses: LizardByte/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Create/Update GitHub Release
if: >-
(github.event_name == 'push' && github.ref == 'refs/heads/master') &&
steps.setup_release.outputs.publish_release == 'true'
steps.setup-release.outputs.publish_release == 'true'
uses: LizardByte/[email protected]
with:
allowUpdates: true
artifacts: ""
artifacts: ''
body: ${{ steps.setup-release.outputs.release_body }}
discussionCategory: announcements
generateReleaseNotes: true
name: ${{ steps.setup_release.outputs.release_tag }}
generateReleaseNotes: ${{ steps.setup-release.outputs.release_generate_notes }}
name: ${{ steps.setup-release.outputs.release_tag }}
prerelease: true
tag: ${{ steps.setup_release.outputs.release_tag }}
tag: ${{ steps.setup-release.outputs.release_tag }}
token: ${{ secrets.GH_BOT_TOKEN }}

0 comments on commit 6c5f44d

Please sign in to comment.