Add vispy plotting of crystal structure to pyspinw #6
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@v3 | |
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 }} |