Skip to content

Commit

Permalink
fix: README.md version tags (#19)
Browse files Browse the repository at this point in the history
The existing tags `@v1` don't actually work because we haven't created
release tags aliasis `v1 -> v1.x.x`.
  • Loading branch information
aakropotkin authored Jul 11, 2023
1 parent 1d7e72c commit c529eea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
uses: actions/checkout@v3

- name: Install flox
uses: flox/install-flox-action@v1
uses: flox/install-flox-action@v1.1.0

- name: Build
run: flox build
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
uses: actions/checkout@v3
- name: Install flox
uses: flox/install-flox-action@v1
uses: flox/install-flox-action@v1.1.0
with:
substituter: s3://your-cache-here # see `nix help-stores` for supported uris
substituter-key: ${{ secrets.FLOX_STORE_PUBLIC_NIX_SECRET_KEY }}
Expand Down Expand Up @@ -141,7 +141,7 @@ For example to use `flox` from a particular `floxpkgs` revision you could set
jobs:
# ...<SNIP>...
- name: Install flox
uses: flox/install-flox-action@v1
uses: flox/install-flox-action@v1.1.0
with:
floxpkgs-uri: "github:flox/floxpkgs/7df34f186e0a93cc45f8d08c85705c2e18f2ef10"
```
Expand All @@ -154,7 +154,7 @@ package (useful for working on development builds) with the following:
jobs:
# ...<SNIP>...
- name: Install flox
uses: flox/install-flox-action@v1
uses: flox/install-flox-action@v1.1.0
with:
# For a local checkout:
flox-installable-uri: ".#flox"
Expand Down

0 comments on commit c529eea

Please sign in to comment.