mirror of
https://github.com/mitchellh/zig-overlay.git
synced 2025-02-05 17:02:48 +02:00
5d2c6d9cfb
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 18 to 19. - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Commits](https://github.com/cachix/install-nix-action/compare/v18...v19) --- updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
560 B
YAML
20 lines
560 B
YAML
name: update-sources
|
|
on:
|
|
schedule:
|
|
- cron: '0 */12 * * *'
|
|
workflow_dispatch:
|
|
jobs:
|
|
update-sources:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.3.0
|
|
- uses: cachix/install-nix-action@v19
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- run: ./update
|
|
- run: "git config user.email mitchellh@users.noreply.github.com"
|
|
- run: "git config user.name zig-overlay"
|
|
- run: "git add -A"
|
|
- run: "git commit -m 'update sources.json' | true"
|
|
- run: "git push -u origin main"
|
|
|