Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the Nix hash on PR, not on the main branch #817

Merged
merged 4 commits into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Nix derivation checks

on:
push:
branches: ["main"]
pull_request:
paths: ["mix.lock"]
workflow_dispatch:

jobs:
auto-update-nix-hash:
Expand All @@ -15,8 +15,8 @@ jobs:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: |
nix run .#update-hash | tee nix/hash
git config user.email ""
git config user.name "GitHub Action Bot"
git commit -m 'Update Nix hash of Mix deps' nix/hash && git push || true
- run: nix run .#update-hash | tee nix/hash
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'Update Nix hash of Mix deps'
- run: nix build
Loading