Skip to content

Commit

Permalink
Update README for v14
Browse files Browse the repository at this point in the history
  • Loading branch information
rickynils committed May 31, 2022
1 parent ff92fcf commit c97efb7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
minimal:
runs-on: ubuntu-latest
steps:
- uses: nixbuild/nix-quick-install-action@v13
- uses: nixbuild/nix-quick-install-action@v14
- run: nix-build --version

flakes-simple:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: nixbuild/nix-quick-install-action@v13
- uses: nixbuild/nix-quick-install-action@v14
with:
nix_conf: experimental-features = nix-command flakes
- name: nix build
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
minimal:
runs-on: ubuntu-latest
steps:
- uses: nixbuild/nix-quick-install-action@v12
- uses: nixbuild/nix-quick-install-action@v14
- run: nix-build --version
```
Expand All @@ -64,7 +64,7 @@ jobs:
### Using Nix flakes
To be able to use Nix flakes you need to specify a version of Nix that supports
it (the default Nix version, 2.8.0, works fine), and enable the flakes
it (the default Nix version, 2.8.1, works fine), and enable the flakes
functionality in the nix configuration:
```yaml
Expand All @@ -75,7 +75,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: nixbuild/nix-quick-install-action@v12
- uses: nixbuild/nix-quick-install-action@v14
with:
nix_conf: experimental-features = nix-command flakes
- name: nix build
Expand Down Expand Up @@ -122,7 +122,7 @@ List all available Nix versions like this:

```
$ nix flake show github:nixbuild/nix-quick-install-action
github:nixbuild/nix-quick-install-action/1ad1d1910805642b0a1cbf5bcc8cdcd0e4c161b9
github:nixbuild/nix-quick-install-action/ff92fcfba97b83aa266b1cd68a30bdff446ef192
├───apps
│ ├───x86_64-darwin
│ │ └───release: app
Expand All @@ -148,7 +148,7 @@ github:nixbuild/nix-quick-install-action/1ad1d1910805642b0a1cbf5bcc8cdcd0e4c161b
│ ├───nix-2_6_0: package 'nix-2.6.0'
│ ├───nix-2_6_1: package 'nix-2.6.1'
│ ├───nix-2_7_0: package 'nix-2.7.0'
│ ├───nix-2_8_0: package 'nix-2.8.0'
│ ├───nix-2_8_1: package 'nix-2.8.1'
│ ├───nix-archives: package 'nix-archives'
│ └───release: package 'release'
└───x86_64-linux
Expand All @@ -165,7 +165,7 @@ github:nixbuild/nix-quick-install-action/1ad1d1910805642b0a1cbf5bcc8cdcd0e4c161b
├───nix-2_6_0: package 'nix-2.6.0'
├───nix-2_6_1: package 'nix-2.6.1'
├───nix-2_7_0: package 'nix-2.7.0'
├───nix-2_8_0: package 'nix-2.8.0'
├───nix-2_8_1: package 'nix-2.8.1'
├───nix-archives: package 'nix-archives'
└───release: package 'release'
```
Expand Down

0 comments on commit c97efb7

Please sign in to comment.