Skip to content

Commit

Permalink
Merge pull request #169 from NIAEFEUP/release/1.0.4
Browse files Browse the repository at this point in the history
Bump version in manifest
  • Loading branch information
ttoino committed Apr 11, 2024
2 parents ac0d538 + 9c2b0e0 commit fd25283
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
Expand All @@ -21,17 +21,17 @@ jobs:
- name: Build
run: yarn release
- name: Upload chrome artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: bundle/chrome
name: chrome
- name: Upload firefox artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: bundle/firefox
name: firefox
- name: Upload safari artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: bundle/safari
name: safari
Expand All @@ -47,7 +47,7 @@ jobs:
REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }}
steps:
- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: chrome
- name: Upload to Chrome Web Store
Expand All @@ -59,7 +59,7 @@ jobs:
# needs: build
# steps:
# - name: Download artifact
# uses: actions/download-artifact@v2
# uses: actions/download-artifact@v4
# with:
# name: chrome

Expand All @@ -72,13 +72,13 @@ jobs:
API_SECRET: ${{ secrets.FIREFOX_API_SECRET }}
steps:
- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: firefox
- name: Sign add-on
run: npx web-ext sign --api-key $API_KEY --api-secret $API_SECRET
- name: Upload signed add-on
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: web-ext-artifacts
name: firefox-signed
Expand All @@ -105,7 +105,7 @@ jobs:
# needs: build
# steps:
# - name: Download artifact
# uses: actions/download-artifact@v2
# uses: actions/download-artifact@v4
# with:
# name: chrome

Expand All @@ -115,7 +115,7 @@ jobs:
# needs: build
# steps:
# - name: Download artifact
# uses: actions/download-artifact@v2
# uses: actions/download-artifact@v4
# with:
# name: safari
# - run: ls -R
2 changes: 1 addition & 1 deletion manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ let manifest = {
name: "NitSig: Sigarra, but Neater",
short_name: "NitSig",
description: "A Neater Sigarra by improving its UI/UX experience and adding new features",
version: "1.0.3",
version: "1.0.4",
manifest_version: 3,
icons: {
16: "images/logo/logo-16.png",
Expand Down

0 comments on commit fd25283

Please sign in to comment.