Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Add backfill action
Browse files Browse the repository at this point in the history
  • Loading branch information
lucperkins committed Aug 23, 2023
1 parent 200e1b6 commit 251a377
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/flakehub-backfill.yaml
Original file line number Diff line number Diff line change
@@ -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 }}"

0 comments on commit 251a377

Please sign in to comment.