Skip to content

Commit

Permalink
push workflow change from beta4.0 to beta3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesa08 committed Jul 7, 2023
1 parent 5b649ce commit 1efb7bc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/create-zip-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@ jobs:
run: |
cd ${{ github.workspace }}
mkdir artifacts/
echo 'creating ${{ env.ZIPNAME }}.zip in ${{ github.workspace }}/artifacts/'
zip -r ${{ github.workspace }}/artifacts/$ZIPNAME.zip MIDIAnimator/
mkdir artifacts/${{ env.ZIPNAME }}
echo 'creating ${{ env.ZIPNAME }} in ${{ github.workspace }}/artifacts/'
cp -a MIDIAnimator/ ${{ github.workspace }}/artifacts/${{ env.ZIPNAME }}
- name: Download all workflow run artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ env.ZIPNAME }}
path: ${{ github.workspace }}/artifacts/
path: ${{ github.workspace }}/artifacts/${{ env.ZIPNAME }}

0 comments on commit 1efb7bc

Please sign in to comment.