mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-04 18:15:08 +02:00
16 lines
324 B
YAML
16 lines
324 B
YAML
name: "Publish every Git push to main to Flakestry"
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
|
|
jobs:
|
|
publish-flake:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: "write"
|
|
contents: "read"
|
|
steps:
|
|
- uses: flakestry/flakestry-publish@main
|
|
with:
|
|
version: "${{ github.ref_name }}"
|