fix(deploy-static-site): quote action_path in nix eval expr to handle @ in path

This commit is contained in:
Christopher Mühl 2026-02-18 22:03:55 +01:00
parent 8edf272e90
commit cc2f605905
No known key found for this signature in database
GPG key ID: 925AC7D69955293F

View file

@ -96,7 +96,7 @@ runs:
shell: bash shell: bash
run: | run: |
nix eval --raw --impure \ nix eval --raw --impure \
--expr "import ${{ github.action_path }}/nomad-job.nix" \ --expr "import \"${{ github.action_path }}/nomad-job.nix\"" \
| nomad job run -json - | nomad job run -json -
env: env:
NOMAD_ADDR: ${{ inputs.nomad-addr }} NOMAD_ADDR: ${{ inputs.nomad-addr }}