Delete .github/workflows/flakehub-publish-tagged.yml

I did the wrong method sky was right
This commit is contained in:
Steven Carpenter 2024-06-02 05:02:31 -04:00 committed by GitHub
parent 164e5ba30d
commit 5b8cd09532
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,27 +0,0 @@
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: "unlisted"
name: "specCon18/YUNODO"
tag: "${{ inputs.tag }}"