Skip to content

Commit

Permalink
attempt fix to properly name generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementTsang committed Jan 12, 2023
1 parent 0bf3ab8 commit 7acdfe4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,10 @@ jobs:
run: |
docker pull ${{ matrix.info.container }}
docker run -t --rm --mount type=bind,source="$(pwd)",target=/volume ${{ matrix.info.container }} "--variant ${{ matrix.info.dpkg }} --target ${{ matrix.info.target }} --no-build ${{ steps.custom-version.outputs.CUSTOM_VERSION_ARG }}" "/volume"
cp ./target/${{ matrix.info.target }}/debian/bottom_*.deb .
cp ./target/${{ matrix.info.target }}/debian/bottom-*.deb .
TMP_NAME=$(find bottom-*.deb)
VERSION=${{ matrix.info.dpkg }}
mv $TMP_NAME $(echo $TMP_NAME | sed "s/-$VERSION//")
- name: Verify Debian release
id: verify
Expand Down

0 comments on commit 7acdfe4

Please sign in to comment.