We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40b87c7 commit 377b8f5Copy full SHA for 377b8f5
.github/workflows/build-artifacts.yml
@@ -7,16 +7,20 @@ on:
7
8
jobs:
9
build:
10
- runs-on: ubuntu-22.04
+ runs-on: macos-14
11
steps:
12
- name: Checkout
13
uses: actions/checkout@v4
14
15
- name: Install Nix
16
uses: cachix/install-nix-action@v26
17
with:
18
+ nix_path: nixpkgs=channel:nixos-23.11
19
github_access_token: ${{ secrets.GITHUB_TOKEN }}
20
21
+ - name: Check Nix Flake
22
+ run: nix flake check
23
+
24
- name: Build Anki deck and PDF with Nix
25
run: nix develop --command bash -c 'make cards.apkg cards.pdf'
26
0 commit comments