mirror of
https://github.com/dwinkler1/nvimConfig.git
synced 2026-02-19 14:30:58 -05:00
22 lines
572 B
YAML
22 lines
572 B
YAML
name: "Publish every Git push to main to FlakeHub"
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
jobs:
|
|
flakehub-publish:
|
|
runs-on: "ubuntu-latest"
|
|
permissions:
|
|
id-token: "write"
|
|
contents: "read"
|
|
steps:
|
|
- uses: "actions/checkout@v5"
|
|
with:
|
|
persist-credentials: false
|
|
- uses: "DeterminateSystems/determinate-nix-action@v3"
|
|
- uses: "DeterminateSystems/flakehub-push@main"
|
|
with:
|
|
name: "dwinkler1/nixCatsConfig"
|
|
rolling: true
|
|
visibility: "public"
|
|
include-output-paths: true
|