mirror of
https://github.com/eza-community/eza.git
synced 2025-12-23 05:36:50 +00:00
ci: add flakehub-backfill
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
parent
b31eb6efa8
commit
1c87a446aa
1 changed files with 25 additions and 0 deletions
25
.github/workflows/flakehub-backfill.yaml
vendored
Normal file
25
.github/workflows/flakehub-backfill.yaml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: "Push to FlakeHub (manual)"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag:
|
||||
description: "Tag to publish to FlakeHub"
|
||||
type: "string"
|
||||
required: true
|
||||
|
||||
jobs:
|
||||
push:
|
||||
runs-on: "ubuntu-22.04"
|
||||
permissions:
|
||||
id-token: "write"
|
||||
contents: "read"
|
||||
steps:
|
||||
- uses: "actions/checkout@v3"
|
||||
with:
|
||||
ref: "refs/tags/${{ inputs.tag }}"
|
||||
- uses: "DeterminateSystems/nix-installer-action@main"
|
||||
- uses: "DeterminateSystems/flakehub-push@main"
|
||||
with:
|
||||
visibility: "public"
|
||||
tag: "${{ inputs.tag }}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue