Files
nixvim/.github/workflows/flakehub-publish-rolling.yml
dependabot[bot]andGaétan Lepage dbf9550dba ci: bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-23 22:48:10 +00:00

24 lines
568 B
YAML

name: "Publish every Git push to main to FlakeHub"
on:
push:
branches:
- "main"
defaults:
run:
shell: bash
jobs:
flakehub-publish:
if: github.repository == 'nix-community/nixvim'
runs-on: "ubuntu-latest"
permissions:
id-token: "write"
contents: "read"
steps:
- uses: "actions/checkout@v7"
- uses: "DeterminateSystems/nix-installer-action@main"
- uses: "DeterminateSystems/flakehub-push@main"
with:
name: ${{ github.repository }}
rolling: true
visibility: "public"