Skip to content

Commit

Permalink
Merge pull request #88 from PierreBeucher/flakehub-publish
Browse files Browse the repository at this point in the history
build: publish Flake to FlakeHub on release
  • Loading branch information
PierreBeucher authored Dec 28, 2023
2 parents 847a603 + c7e4109 commit bb86728
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/flakehub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "Publish tags to FlakeHub"
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:
flakehub-publish:
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@main"

- uses: "DeterminateSystems/flakehub-push@main"
with:
visibility: "public"
name: "PierreBeucher/novops"
tag: "${{ inputs.tag }}"

0 comments on commit bb86728

Please sign in to comment.