Bug fixes for sw_fitpowder #15
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: Release SpinW | |
on: | |
pull_request: | |
branches: [master] | |
types: [closed] | |
jobs: | |
create_release: | |
name: Creates a SpinW release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- if: | | |
contains(github.event.pull_request.title, 'RELEASE') && | |
github.event.pull_request.merged | |
shell: bash -l {0} | |
run: | | |
pip3 install requests | |
python3 release.py --notest --github --create_tag --token=${{ secrets.GH_TOKEN }} |