Skip to content

Commit

Permalink
Moves .zip Release dist/ Contents to Root
Browse files Browse the repository at this point in the history
  • Loading branch information
Step7750 committed Aug 18, 2023
1 parent 75b9784 commit e471e3e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,16 @@ jobs:
run: |
npm install
npm run build
zip -r extension-chrome.zip dist
(cd dist && zip -r ../extension-chrome.zip .)
rm -rf dist
npm run build_ff
zip -r extension-firefox.zip dist
(cd dist && zip -r ../extension-firefox.zip .)
zip -r extension-firefox.zip dist/*
- uses: "marvinpinto/[email protected]"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
extension-chrome.zip
extension-firefox.zip
extension-firefox.zip

0 comments on commit e471e3e

Please sign in to comment.