Skip to content

Commit

Permalink
Merge pull request #37 from openshift-kni/gh-actions-release-fix
Browse files Browse the repository at this point in the history
gh actions: fix output path
  • Loading branch information
ffromani authored Sep 20, 2021
2 parents 3a6d0b5 + cb28679 commit 423f77b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,22 @@ jobs:
- name: fix build artifacts
run: |
for tool in knit cpulist numalign; do
mv _out/$tool $tool-${{ env.RELEASE_VERSION }}-linux-amd64
mv _output/$tool $tool-${{ env.RELEASE_VERSION }}-linux-amd64
done
make clean outdir
for tool in knit cpulist numalign; do
mv $tool-${{ env.RELEASE_VERSION}}-linux-amd64 _out/
mv $tool-${{ env.RELEASE_VERSION}}-linux-amd64 _output/
done
- name: compute signature
run: |
pushd _out && sha256sum * >> ../SHA256SUMS && mv ../SHA256SUMS . && popd
pushd _output && sha256sum * >> ../SHA256SUMS && mv ../SHA256SUMS . && popd
- name: upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: _out/*
path: _output/*

- name: export kind logs
if: ${{ failure() }}
Expand Down

0 comments on commit 423f77b

Please sign in to comment.