Skip to content

Commit

Permalink
ci: publish releases to flakehub
Browse files Browse the repository at this point in the history
  • Loading branch information
figsoda committed Aug 24, 2023
1 parent 14d2554 commit d804d91
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,33 @@ on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
workflow_dispatch:
inputs:
tag:
description: The existing tag to publish to FlakeHub
type: string
required: true

jobs:
release:
runs-on: ubuntu-latest
if: github.event_name != 'workflow_dispatch'
steps:
- uses: softprops/action-gh-release@v1
with:
body: "[CHANGELOG.md](https://github.com/nix-community/nix-init/blob/main/CHANGELOG.md)"

flakehub:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v3
with:
ref: ${{ inputs.tag != null && format('refs/tags/{0}', inputs.tag) || '' }}
- uses: DeterminateSystems/nix-installer-action@v4
- uses: DeterminateSystems/flakehub-push@v3
with:
visibility: public
tag: ${{ inputs.tag }}

0 comments on commit d804d91

Please sign in to comment.