mirror of
https://github.com/DeterminateSystems/nix-installer-action.git
synced 2024-12-23 13:32:06 +01:00
Fix path in uses declarations
This commit is contained in:
parent
151fdae2fc
commit
86e8caa071
1 changed files with 5 additions and 5 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue