updates to use name from control type #25
Workflow file for this run
This file contains hidden or 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: push to version tag | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| Build_tox: | |
| runs-on: [self-hosted, Windows, TouchDesigner] | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| token: ${{secrets.SUBMODULE_PAT}} | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: SudoMagic TD Package Builder | |
| uses: SudoMagicCode/action-build-td-tox-package@v0.0.2 | |
| with: | |
| build_settings: ./buildSettings.json | |
| - name: Release | |
| uses: softprops/action-gh-release@v2.2.2 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| files: ./release/package.zip |