Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
use /tmp path when creating an RPM bundle.
  • Loading branch information
cloudnull authored Aug 18, 2021
1 parent 073e559 commit 884251e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,12 @@ jobs:
fail_on_unmatched_files: true
- name: Create rpm tarball
run: |
pushd ${{ github.workspace }}/contrib/build
tar -czf rpm-bundle.tar.gz *.rpm
popd
cd ${{ github.workspace }}/contrib/build
tar -czf /tmp/rpm-bundle.tar.gz *.rpm
- name: Upload RPM bundle
uses: softprops/action-gh-release@v1
with:
files: contrib/build/rpm-bundle.tar.gz
files: /tmp/rpm-bundle.tar.gz
fail_on_unmatched_files: true

build_stable_container:
Expand Down

0 comments on commit 884251e

Please sign in to comment.