feat: add flakehub entry + nix flake (#109)

Title! This PR should add a Flakehub entry and a Nix flake for this
project :>

---------

Co-authored-by: Gerald Pinder <gmpinder@gmail.com>
This commit is contained in:
Tulili 2024-03-05 18:34:29 -03:00 committed by GitHub
parent de49037330
commit 80958f60a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 245 additions and 0 deletions

27
.github/workflows/flakehub-tagged.yml vendored Normal file
View file

@ -0,0 +1,27 @@
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: "public"
name: "blue-build/cli"
tag: "${{ inputs.tag }}"