this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Explicitly push mac and linux packages to cachix (#14)

* explicitly push mac and linux packages to cachix

* Update validate.yml

authored by

Alex Bates and committed by
GitHub
2528ddd1 7452ec0c

+10 -1
+10 -1
.github/workflows/validate.yml
··· 20 20 - name: Build 21 21 run: ./gradlew createReleaseZip 22 22 build-nix-flake: 23 - runs-on: ubuntu-latest 23 + strategy: 24 + matrix: 25 + os: [ubuntu-latest, macos-latest] 26 + runs-on: ${{ matrix.os }} 24 27 steps: 25 28 - name: Checkout 26 29 uses: actions/checkout@v4 ··· 33 36 authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' 34 37 - name: Build 35 38 run: nix build 39 + - name: Try to push package to cache 40 + run: | 41 + nix build --json \ 42 + | jq -r '.[].outputs | to_entries[].value' \ 43 + | cachix push papermario-dx \ 44 + || true