Skip to content

Commit

Permalink
Fix copy artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
Aszusz committed Jul 24, 2023
1 parent 7e81889 commit feb87a6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ runs:
--quiet
chmod a+x build/appimagetool-x86_64.AppImage
ARCH=x86_64 build/appimagetool-x86_64.AppImage build/AppDir
DIR=dirname ${{ inputs.output-path }}
mkdir --parents ${DIR}
mv ${{ inputs.app-name }}-x86_64.AppImage ${{ inputs.output-path }}
ARCH=x86_64 ./build/appimagetool-x86_64.AppImage ./build/AppDir
DIR=$(dirname "${{ inputs.output-path }}")
mkdir --parents "${DIR}"
mv "${{ inputs.app-name }}-x86_64.AppImage" "${{ inputs.output-path }}"

0 comments on commit feb87a6

Please sign in to comment.