Fix path in uses declarations

This commit is contained in:
Luc Perkins 2024-05-16 21:04:04 -03:00
parent 151fdae2fc
commit 86e8caa071
No known key found for this signature in database
GPG key ID: 16DB1108FB591835

View file

@ -217,14 +217,14 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- name: Install with alternative source-url - name: Install with alternative source-url
uses: ./. uses: ./
with: with:
source-url: https://github.com/DeterminateSystems/nix-installer/releases/download/v0.18.0/nix-installer-x86_64-linux source-url: https://github.com/DeterminateSystems/nix-installer/releases/download/v0.18.0/nix-installer-x86_64-linux
- name: Ensure that Nix is installed via alternative source-url - name: Ensure that Nix is installed via alternative source-url
run: nix --version run: nix --version
- name: Install with alternative source-pr - name: Install with alternative source-pr
uses: ./. uses: ./
with: with:
# https://github.com/DeterminateSystems/nix-installer/pull/938 # https://github.com/DeterminateSystems/nix-installer/pull/938
source-pr: "938" source-pr: "938"
@ -232,7 +232,7 @@ jobs:
run: nix --version run: nix --version
- name: Install with alternative source-revision - name: Install with alternative source-revision
uses: ./. uses: ./
with: with:
# https://github.com/DeterminateSystems/nix-installer/tree/ccf1d39a83099657ad324e7927676432435431e1 # https://github.com/DeterminateSystems/nix-installer/tree/ccf1d39a83099657ad324e7927676432435431e1
source-revision: "ccf1d39a83099657ad324e7927676432435431e1" source-revision: "ccf1d39a83099657ad324e7927676432435431e1"
@ -240,7 +240,7 @@ jobs:
run: nix --version run: nix --version
- name: Install with alternative source-branch - name: Install with alternative source-branch
uses: ./. uses: ./
with: with:
# https://github.com/DeterminateSystems/nix-installer/tree/lazy-trees # https://github.com/DeterminateSystems/nix-installer/tree/lazy-trees
source-revision: "lazy-trees" source-revision: "lazy-trees"
@ -248,7 +248,7 @@ jobs:
run: nix --version run: nix --version
- name: Install with alternative source-tag - name: Install with alternative source-tag
uses: ./. uses: ./
with: with:
# https://github.com/DeterminateSystems/nix-installer/tree/v0.14.0 # https://github.com/DeterminateSystems/nix-installer/tree/v0.14.0
source-tag: "v0.14.0" source-tag: "v0.14.0"