Fixes for H1 scenario exporting and more checks in H3 shader gen #306
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 | |
on: | |
push: | |
paths-ignore: | |
- '*.md' | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
- name: Do package | |
run: python build/create_zip.py | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: toolkit | |
path: output/ | |
- name: Release to Github | |
uses: ncipollo/release-action@v1 | |
with: | |
prerelease: false | |
token: '${{ secrets.GITHUB_TOKEN }}' | |
artifacts: output/* | |
tag: '${{ github.run_number }}' |