mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
21 lines
530 B
YAML
21 lines
530 B
YAML
name: "Publish every Git push to master to FlakeHub"
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
jobs:
|
|
flakehub-publish:
|
|
runs-on: "ubuntu-latest"
|
|
permissions:
|
|
id-token: "write"
|
|
contents: "read"
|
|
steps:
|
|
- uses: "actions/checkout@v4"
|
|
- uses: "DeterminateSystems/nix-installer-action@main"
|
|
- uses: "DeterminateSystems/flakehub-push@main"
|
|
with:
|
|
name: "foo-dogsquared/nixos-config"
|
|
rolling: true
|
|
visibility: "public"
|
|
include-output-paths: false
|