File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed
actions/nix-install-ephemeral Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change 3636 sudo chmod +x /etc/nix/upload-to-cache.sh
3737 env :
3838 NIX_SIGN_SECRET_KEY : ${{ env.NIX_SIGN_SECRET_KEY }}
39- - name : Check runner type
40- id : check-runner
41- shell : bash
42- run : |
43- if [[ "${{ runner.name }}" == "arm-native-runner" ]]; then
44- echo "skip_nix_install=true" >> $GITHUB_OUTPUT
45- echo "Running on arm-native-runner, skipping Nix installation (pre-installed)"
46- else
47- echo "skip_nix_install=false" >> $GITHUB_OUTPUT
48- echo "Will install Nix"
49- fi
5039 - name : Install nix
5140 if : steps.check-runner.outputs.skip_nix_install != 'true'
5241 uses : cachix/install-nix-action@v31
Original file line number Diff line number Diff line change 4848 - name : Checkout Repo
4949 uses : supabase/postgres/.github/actions/shared-checkout@HEAD
5050
51- - uses : ./.github/actions/nix-install-ephemeral
52-
5351 - name : Run checks if triggered manually
5452 if : ${{ github.event_name == 'workflow_dispatch' }}
5553 run : |
You can’t perform that action at this time.
0 commit comments