Skip to content

Commit 7d9ae95

Browse files
committed
fix: fix type, add shell
1 parent d71a590 commit 7d9ae95

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/std.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,18 @@ jobs:
7373
runs-on: ubuntu-latest
7474
steps:
7575
- uses: actions/checkout@v4
76+
- uses: nixbuild/nix-quick-install-action@v25
77+
- uses: nixbuild/nixbuild-action@v17
78+
with:
79+
nixbuild_ssh_key: ${{ secrets.SSH_PRIVATE_KEY }}
80+
generate_summary_for: job
81+
# Further steps assume AWS_PROFILE=lw, while the official action has no way to specify that profile:
7682
- run: |
77-
if ! grep -qF '"@esbuild/linux-x64@npm:' yarn-project.nix ; then
78-
echo >&2 'Please, make sure that they ‘yarn-project.nix contains @esbuild/linux-x64@npm (see your diff).'
79-
exit 1
83+
if ! grep -F '"@esbuild/linux-x64@npm:' yarn-project.nix ; then
84+
echo >&2 'Please, make sure that the "yarn-project.nix" contains "@esbuild/linux-x64@npm" (see your diff).'
85+
exit 1
8086
fi
87+
shell: bash
8188
8289
discover:
8390
needs: check-yarn-project-nix

0 commit comments

Comments
 (0)