fix(deploy-static-site): add nix profile bin to PATH after install

This commit is contained in:
Christopher Mühl 2026-02-18 18:23:51 +01:00
parent f870ef0bf3
commit c0ba8096ba
No known key found for this signature in database
GPG key ID: 925AC7D69955293F

View file

@ -49,7 +49,9 @@ runs:
steps: steps:
- name: Install tools - name: Install tools
shell: bash shell: bash
run: NIXPKGS_ALLOW_UNFREE=1 nix profile install --impure nixpkgs#nomad nixpkgs#awscli2 nixpkgs#skopeo run: |
NIXPKGS_ALLOW_UNFREE=1 nix profile install --impure nixpkgs#nomad nixpkgs#awscli2 nixpkgs#skopeo
echo "$HOME/.nix-profile/bin" >> $GITHUB_PATH
- name: Build site - name: Build site
shell: bash shell: bash