Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Polprzewodnikowy committed Dec 17, 2023
1 parent 68c2254 commit c9434ef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,10 @@ jobs:

- name: Package executable
run: |
mkdir package
PACKAGE_DIR=$(pwd)/package
mkdir -p $PACKAGE_DIR
cd ${{ matrix.release-dir }}
tar ${{ matrix.options }} ../../package/${{ matrix.name }}-${{ steps.version.outputs.replaced }}.${{ matrix.extension }} ${{ matrix.executable }}
tar ${{ matrix.options }} $PACKAGE_DIR/${{ matrix.name }}-${{ steps.version.outputs.replaced }}.${{ matrix.extension }} ${{ matrix.executable }}
working-directory: sw/deployer

- name: Upload artifact
Expand Down

0 comments on commit c9434ef

Please sign in to comment.