Fix build workflow CHANGED env var
This commit is contained in:
parent
963ee15eeb
commit
b198bcab2e
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build.yaml
vendored
4
.github/workflows/build.yaml
vendored
|
|
@ -114,7 +114,7 @@ jobs:
|
||||||
- name: Find changed templates
|
- name: Find changed templates
|
||||||
env:
|
env:
|
||||||
CHANGED: ${{ needs.changedpkgs.outputs.changed }}
|
CHANGED: ${{ needs.changedpkgs.outputs.changed }}
|
||||||
run: sudo -Eu builder echo "$CHANGED" | sed 's/ /\n/g' > /tmp/templates
|
run: sudo -Eu builder echo "${{ env.CHANGED }}" | sed 's/ /\n/g' > /tmp/templates
|
||||||
|
|
||||||
- name: Build and check packages
|
- name: Build and check packages
|
||||||
run: sudo -Eu builder common/travis/build.sh "$BOOTSTRAP" "$ARCH" "$TEST"
|
run: sudo -Eu builder common/travis/build.sh "$BOOTSTRAP" "$ARCH" "$TEST"
|
||||||
|
|
@ -127,7 +127,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
CHANGED: ${{ needs.changedpkgs.outputs.changed }}
|
CHANGED: ${{ needs.changedpkgs.outputs.changed }}
|
||||||
with:
|
with:
|
||||||
name: binaries-${{ CHANGED }}-${{ matrix.config.arch }}-${{ matrix.config.libc }}.xbps
|
name: binaries-${{ env.CHANGED }}-${{ matrix.config.arch }}-${{ matrix.config.libc }}.xbps
|
||||||
path: |
|
path: |
|
||||||
hostdir/binpkgs/*.xbps
|
hostdir/binpkgs/*.xbps
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue