Skip to content

Commit f810a4b

Browse files
committed
fix: can just not run in workflow
1 parent a9435bd commit f810a4b

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

.github/actions/nix-install-ephemeral/action.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,6 @@ runs:
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

.github/workflows/qemu-image-build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ jobs:
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: |

0 commit comments

Comments
 (0)