mirror of
https://github.com/packwiz/packwiz.git
synced 2025-08-20 23:16:31 +02:00
Since nix tries to update inputs on newer versions out of, I suppose, some introduced incompatibility, `nix build` fails. And nixpkgs from 2023 sounds rather obsolete at this point, so update was kinda due I think. On newer versions of nixpkgs however buildGoModule has changed and requires one of its arguments to be called vendorHash and not vendorSha256, this patch changes that as well. Fixes #297, closes #314, closes #307
33 lines
834 B
YAML
33 lines
834 B
YAML
name: nix
|
|
on: [push]
|
|
|
|
jobs:
|
|
update-vendor-sha:
|
|
name: vendor-sha
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install nix
|
|
uses: cachix/install-nix-action@v17
|
|
with:
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
env:
|
|
NIX_CONFIG: access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Update packwiz version
|
|
run: nix run nixpkgs#nix-prefetch ./nix/prefetcher.nix | tee ./nix/vendor-hash
|
|
env:
|
|
NIX_CONFIG: access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Commit
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "chore: update packwiz vendorHash"
|
|
branch: main
|
|
|