github/workflows/flakehub-publish: drop

This commit is contained in:
WilliButz 2024-02-06 11:42:11 +01:00
parent 2fb62afc42
commit a3663ee7bc
No known key found for this signature in database
GPG key ID: AB05DF703EB9DC70

View file

@ -1,28 +0,0 @@
name: "Publish tags to FlakeHub"
on:
workflow_dispatch:
inputs:
tag:
description: "The existing tag to publish to FlakeHub"
type: "string"
required: true
version:
description: "The version 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: "unlisted"
name: "mayflower/authentik-nix"
tag: "${{ inputs.version }}"