Skip to content

Commit

Permalink
Merge pull request #51 from move4mobile/develop
Browse files Browse the repository at this point in the history
Configure upload artifact
  • Loading branch information
mschilling authored Feb 17, 2020
2 parents a0a1613 + 677283d commit 9fac2d1
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Build project zip
run: |
zip -r output ./dist/*
zip -r site ./dist/*
- name: Bump version and push tag
id: tag_release
Expand Down Expand Up @@ -56,6 +56,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./output.zip
asset_name: output.zip
asset_path: ./site.zip
asset_name: site.zip
asset_content_type: application/zip

- uses: actions/upload-artifact@v1
with:
name: site.zip
path: site.zip

0 comments on commit 9fac2d1

Please sign in to comment.