Skip to content

tar

tar #14

Workflow file for this run

name: Compile to MIDI and PDF
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- run: nix develop --extra-experimental-features 'nix-command flakes' --command make --keep-going
- name: Archive Distributables
run: tar -cf dist.tar -C dist .
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: |
dist.tar