Publish release on github #12
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: Publish release on github | |
on: | |
workflow_dispatch: | |
jobs: | |
publish_release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Prepare empty notable changes | |
run: touch notable_changes.txt | |
- name: Run gh-release.sh | |
run: NONINTERACTIVE=1 ./gh-release.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |