Skip to content

Commit

Permalink
zip to no tmp dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiang-cd committed Jul 16, 2024
1 parent 4327c70 commit 1b4c4ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,14 @@ jobs:
uses: vimtor/action-zip@v1
with:
files: ${{ env.LINUX_APP_RELEASE_PATH }}\
dest: /tmp/${{ env.LINUX_APP_NAME }}.zip
dest: ${{ env.LINUX_APP_RELEASE_PATH }}/${{ env.LINUX_APP_NAME }}.zip

- name: Upload Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: /tmp/${{ env.LINUX_APP_NAME }}.zip
asset_path: ${{ env.LINUX_APP_RELEASE_PATH }}/${{ env.LINUX_APP_NAME }}.zip
asset_name: ${{ env.LINUX_APP_NAME }}
asset_content_type: application/octet-stream

0 comments on commit 1b4c4ce

Please sign in to comment.