mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:13:55 -05:00
Create flakehub-publish-tagged.yml
This commit is contained in:
parent
53d9542703
commit
532be85d91
28
.github/workflows/flakehub-publish-tagged.yml
vendored
Normal file
28
.github/workflows/flakehub-publish-tagged.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
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@v4"
|
||||||
|
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: "alyraffauf/nixcfg"
|
||||||
|
tag: "${{ inputs.tag }}"
|
||||||
|
include-output-paths: true
|
Loading…
Reference in a new issue