set mixer stages as default #31
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: Build tsOS-vhf Images | |
on: push | |
jobs: | |
release: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Create release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
build-tsOS-vhf: | |
runs-on: ubuntu-24.04 | |
needs: release | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
token: ${{ secrets.PAT_JONASHOECHST }} | |
- name: Run tsOS-vhf.Pifile | |
uses: Nature40/[email protected] | |
with: | |
pifile: tsOS-vhf.Pifile | |
- name: Package tsOS-vhf-arm64-${{github.ref_name}}.zip | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
mv tsOS-vhf-arm64.img tsOS-vhf-arm64-${{github.ref_name}}.img | |
zip tsOS-vhf-arm64-${{github.ref_name}}.zip tsOS-vhf-arm64-${{github.ref_name}}.img | |
- name: Upload Release tsOS-vhf-arm64-${{github.ref_name}}.zip | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh release upload ${{github.ref_name}} tsOS-vhf-arm64-${{github.ref_name}}.zip |