From c529eeaa6f3cf8fdbc41ce7c901a6ede70dc0229 Mon Sep 17 00:00:00 2001 From: Alex Ameen Date: Tue, 11 Jul 2023 15:11:43 -0500 Subject: [PATCH] fix: README.md version tags (#19) The existing tags `@v1` don't actually work because we haven't created release tags aliasis `v1 -> v1.x.x`. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d9852cf..c61f067 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 }} @@ -141,7 +141,7 @@ For example to use `flox` from a particular `floxpkgs` revision you could set jobs: # ...... - name: Install flox - uses: flox/install-flox-action@v1 + uses: flox/install-flox-action@v1.1.0 with: floxpkgs-uri: "github:flox/floxpkgs/7df34f186e0a93cc45f8d08c85705c2e18f2ef10" ``` @@ -154,7 +154,7 @@ package (useful for working on development builds) with the following: jobs: # ...... - 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"