Compare commits
2 commits
015b6baa8d
...
ed82c083ab
Author | SHA1 | Date | |
---|---|---|---|
ed82c083ab | |||
ec978a406d |
3 changed files with 13 additions and 6 deletions
|
@ -78,7 +78,7 @@ jobs:
|
|||
derivations=()
|
||||
while IFS=$'\n' read derivation; do
|
||||
derivations+=("$derivation")
|
||||
done < <(nix path-info --derivation "$package" | sed 's/\.drv$/.drv^*/')
|
||||
done < <(nix path-info --derivation "$package")
|
||||
|
||||
for derivation in "${derivations[@]}"; do
|
||||
nix copy -j8 \
|
||||
|
@ -155,7 +155,7 @@ jobs:
|
|||
derivations=()
|
||||
while IFS=$'\n' read derivation; do
|
||||
derivations+=("$derivation")
|
||||
done < <(nix path-info --derivation "$package" | sed 's/\.drv$/.drv^*/')
|
||||
done < <(nix path-info --derivation "$package")
|
||||
|
||||
for derivation in "${derivations[@]}"; do
|
||||
nix copy -j8 \
|
||||
|
|
2
.github/workflows/build-packages.yml
vendored
2
.github/workflows/build-packages.yml
vendored
|
@ -67,7 +67,7 @@ jobs:
|
|||
derivations=()
|
||||
while IFS=$'\n' read derivation; do
|
||||
derivations+=("$derivation")
|
||||
done < <(nix path-info --derivation "${{ matrix.package }}" | sed 's/\.drv$/.drv^*/')
|
||||
done < <(nix path-info --derivation "${{ matrix.package }}")
|
||||
|
||||
for derivation in "${derivations[@]}"; do
|
||||
nix copy -j8 \
|
||||
|
|
13
.github/workflows/update-flake-lock.yml
vendored
13
.github/workflows/update-flake-lock.yml
vendored
|
@ -11,8 +11,15 @@ jobs:
|
|||
createPullRequest:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
|
||||
with:
|
||||
ssh-key; ${{ secrets.SSH_DEPLOY_KEY }}
|
||||
|
||||
- name: Install Nix
|
||||
uses: cachix/install-nix-action@v30
|
||||
uses: cachix/install-nix-action@53fb48f556dd912c4814b24ee8059a9c91c82b18
|
||||
|
||||
- name: Update flake.lock
|
||||
uses: DeterminateSystems/update-flake-lock@v24
|
||||
run: nix flake update --commit-lock-file
|
||||
|
||||
- name: Create PR
|
||||
uses: peter-evans/create-pull-request@98106d3f2b65918a6591f9e155117b7219ff7e51
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue