Skip to content

Commit

Permalink
lock
Browse files Browse the repository at this point in the history
  • Loading branch information
ljmerza committed Dec 8, 2023
1 parent 87532d9 commit fc7cdaf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,13 @@ jobs:
run: npm run build

- name: Archive production artifacts
run: zip -r dist.zip dist

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
path: dist.zip

- name: Determine TAG_NAME
run: |
Expand All @@ -63,6 +66,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist
asset_path: ./dist.zip
asset_name: dist.zip
asset_content_type: application/zip

0 comments on commit fc7cdaf

Please sign in to comment.