Skip to content
This repository has been archived by the owner on Nov 25, 2023. It is now read-only.

Commit

Permalink
fixed pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed Jun 26, 2021
1 parent 3d5ab42 commit 4fa201b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
if: |
!startsWith(github.ref, 'refs/tags')
name: Generate build and test
name: Generate build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ jobs:
zip -r dist/opera.zip dist/opera
- name: Create Release
id: create_release
uses: actions/create-release@v1
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
dist/chrome.zip
dist/edge.zip
dist/firefox.zip
dist/opera.zip
./dist/chrome.zip
./dist/edge.zip
./dist/firefox.zip
./dist/opera.zip
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
release_name: ${{ github.ref }}
draft: false
prerelease: false
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"dev": "webextension-toolbox dev",
"build": "webextension-toolbox build",
"build-all": "webextension-toolbox build chrome firefox opera edge"
"build-all": "webextension-toolbox build chrome && webextension-toolbox build firefox && webextension-toolbox build opera && webextension-toolbox build edge"
},
"devDependencies": {
"webextension-toolbox": "latest"
Expand Down

0 comments on commit 4fa201b

Please sign in to comment.