New Staging initialization option #33
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
| # Zip up algorithms and add to the release | |
| name: upload-algorithms | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Add algorithms to release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: | | |
| src/test/resources/algorithms/cs-*.zip | |
| src/test/resources/algorithms/eod_public-*.zip | |
| src/test/resources/algorithms/pediatric-*.zip | |
| src/test/resources/algorithms/tnm-*.zip |