mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
20 lines
421 B
YAML
20 lines
421 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
inputs:
|
|
ref:
|
|
description: "The existing reference 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:
|
|
ref: "${{ inputs.ref || github.ref }}"
|