Skip to content

Commit 9b82323

Browse files
committed
ci: lint fix
1 parent 8d34b62 commit 9b82323

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-dev-shells.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ jobs:
4747
env:
4848
SYSTEM: ${{ matrix.system }}
4949
run: |
50-
shells=$(nix flake show --json | jq -r '.devShells."'$SYSTEM'" | keys[]' | tr '\n' ' ')
50+
shells=$(nix flake show --json | jq -r '.devShells."'"$SYSTEM"'" | keys[]' | tr '\n' ' ')
5151
echo "shells=$shells" >> "$GITHUB_OUTPUT"
5252
- name: Build and cache dev shells
5353
env:
5454
SHELLS: ${{ steps.shells.outputs.shells }}
5555
run: |
5656
for shell in $SHELLS; do
5757
echo "Building dev shell: $shell"
58-
nix develop .#$shell --command echo "Dev shell $shell built successfully"
58+
nix develop ".#$shell" --command echo "Dev shell $shell built successfully"
5959
done
6060
- name: Build default dev shell
6161
run: |-

.github/workflows/update-flakes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
GH_TOKEN: ${{ steps.app-token.outputs.token }}
2626
SLUG: ${{ steps.app-token.outputs.app-slug }}
2727
run: |
28-
name="$SLUG[bot]"
28+
name="${SLUG}[bot]"
2929
id=$(gh api "/users/$name" --jq .id)
3030
{
3131
echo "id=$id"

0 commit comments

Comments
 (0)