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

Commit

Permalink
fixing pipeline bugs, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed Jun 27, 2021
1 parent 21a8823 commit fc80ab9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,15 @@ jobs:
run: |
npm install
npm run build-all
cd dist
zip -r chrome.zip chrome
zip -r edge.zip edge
zip -r firefox.zip firefox
zip -r opera.zip opera
cd dist/chrome
zip -r ../chrome.zip *
cd ../edge
zip -r ../edge.zip *
cd ../firefox
zip -r ../firefox.zip *
cd ../opera
zip -r ../opera.zip *
cd ../..
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
Expand Down
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "1.0.2",
"version": "1.0.3",
"manifest_version": 2,
"default_locale": "en",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "refined-github-feeds",
"version": "1.0.2",
"version": "1.0.3",
"description": "Making the GitHub news feeds great again",
"scripts": {
"dev": "webextension-toolbox dev",
Expand Down

0 comments on commit fc80ab9

Please sign in to comment.