This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
clarify upstreaming to Nixpkgs in readme #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Publish a flake to flakestry" | |
on: | |
push: | |
tags: | |
- "v?[0-9]+.[0-9]+.[0-9]+" | |
- "v?[0-9]+.[0-9]+" | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: "The existing tag to publish" | |
type: "string" | |
required: true | |
jobs: | |
publish-flake: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: "write" | |
contents: "read" | |
steps: | |
- uses: flakestry/flakestry-publish@main | |
with: | |
version: "${{ inputs.tag || github.ref_name }}" |