Skip to content

Commit

Permalink
Fix the zip relative path in my workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tbttfox committed Aug 22, 2023
1 parent eb6effa commit 7355da8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,13 @@ jobs:

- name: Create zipfile
run: |
zip -r blurPostDeform-${{env.RELEASE_VERSION}}.zip artifacts/blurdeform
cd artifacts/blurdeform
zip -r blurPostDeform-${{env.RELEASE_VERSION}}.zip .
cd ../..
- name: Upload distribution
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: blurPostDeform-*.zip
files: artifacts/blurdeform/blurPostDeform-*.zip

0 comments on commit 7355da8

Please sign in to comment.