Skip to content

Build and release TsuBeta script #8

Build and release TsuBeta script

Build and release TsuBeta script #8

Workflow file for this run

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