Build and release TsuBeta script #8
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: script-tsumbeta-actions | |
run-name: Build and release TsuBeta script | |
on: | |
push: | |
# paths: | |
# - scripts/com.r2studio.TsumBeta/** | |
jobs: | |
package-script: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./scripts/com.r2studio.TsumBeta | |
steps: | |
- name: Check out the repository to the runner | |
uses: actions/checkout@v4 | |
- name: Make the script files executable | |
run: chmod +x build.sh | |
- name: Compile sources and create index.zip | |
run: ./build.sh | |
- name: Archive index.zip artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: index | |
path: scripts/com.r2studio.TsumBeta/index.zip | |
retention-days: 1 | |
compression-level: 0 | |
overwrite: true | |