Skip to content

Commit

Permalink
Publish all existing versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Nov 28, 2023
1 parent e85b056 commit 070502e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,25 @@ concurrency:
jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- v1.0.0
- v1.1.0
- v2.0.0
- v2.1.0
permissions:
id-token: write
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: v1.0.0
ref: ${{ matrix.version }}
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Publish flake
uses: DeterminateSystems/flakehub-push@main
with:
tag: v1.0.0
visibility: unlisted
tag: ${{ matrix.version }}
visibility: listed

0 comments on commit 070502e

Please sign in to comment.