-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,19 +30,22 @@ jobs: | |
- name: Install | ||
run: npm ci | ||
|
||
- name: Build | ||
- name: Build extension | ||
run: npm run build | ||
|
||
- name: Bundle | ||
- name: Bundle extension | ||
run: npm run bundle | ||
|
||
- name: Load source code | ||
run: gh release download ${{ github.event.release.tag_name }} --archive zip --dir out --output replace_maps_source.zip | ||
|
||
- name: Release | ||
uses: browser-actions/release-firefox-addon@latest | ||
with: | ||
addon-id: "[email protected]" | ||
addon-path: "out/replace_maps.zip" | ||
source-path: "https://github.com/nobkd/replace-maps/archive/refs/tags/${{ github.event.release.tag_name }}.zip" | ||
approval-note: "Follow the instructions in AMO-README.md" | ||
addon-id: [email protected] | ||
addon-path: out/replace_maps.zip | ||
source-path: out/replace_maps_source.zip | ||
approval-note: Follow the instructions in AMO-README.md | ||
release-note: ${{ github.event.release.body }} | ||
auth-api-issuer: ${{ secrets.AUTH_API_ISSUER }} | ||
auth-api-secret: ${{ secrets.AUTH_API_SECRET }} | ||
|