build(deps): bump LizardByte/setup-release-action from 2023.1128.1400 to 2023.1207.14154 #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
pull_request: | |
branches: [master] | |
types: [opened, synchronize, reopened] | |
push: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: 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' | |
uses: LizardByte/[email protected] | |
with: | |
allowUpdates: true | |
artifacts: "" | |
body: '' | |
discussionCategory: announcements | |
generateReleaseNotes: true | |
name: ${{ steps.setup_release.outputs.release_tag }} | |
prerelease: ${{ steps.setup_release.outputs.publish_pre_release }} | |
tag: ${{ steps.setup_release.outputs.release_tag }} | |
token: ${{ secrets.GH_BOT_TOKEN }} |