-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/favorite-course
- Loading branch information
Showing
4 changed files
with
401 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,121 @@ | ||
name: CD | ||
|
||
on: | ||
release: | ||
types: ["published"] | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "20" | ||
cache: "yarn" | ||
- name: Install dependencies | ||
run: yarn install --frozen-lockfile | ||
- name: Build | ||
run: yarn release | ||
- name: Upload chrome artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: bundle/chrome | ||
name: chrome | ||
- name: Upload firefox artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: bundle/firefox | ||
name: firefox | ||
- name: Upload safari artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: bundle/safari | ||
name: safari | ||
|
||
chrome: | ||
name: Deploy to Chrome | ||
runs-on: ubuntu-latest | ||
needs: build | ||
env: | ||
EXTENSION_ID: ${{ secrets.CHROME_EXTENSION_ID }} | ||
CLIENT_ID: ${{ secrets.CHROME_CLIENT_ID }} | ||
CLIENT_SECRET: ${{ secrets.CHROME_CLIENT_SECRET }} | ||
REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }} | ||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: chrome | ||
- name: Upload to Chrome Web Store | ||
run: npx chrome-webstore-upload-cli upload --auto-publish | ||
|
||
# edge: | ||
# name: Deploy to Edge | ||
# runs-on: ubuntu-latest | ||
# needs: build | ||
# steps: | ||
# - name: Download artifact | ||
# uses: actions/download-artifact@v2 | ||
# with: | ||
# name: chrome | ||
|
||
firefox: | ||
name: Deploy to Firefox | ||
runs-on: ubuntu-latest | ||
needs: build | ||
env: | ||
API_KEY: ${{ secrets.FIREFOX_API_KEY }} | ||
API_SECRET: ${{ secrets.FIREFOX_API_SECRET }} | ||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v2 | ||
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 | ||
with: | ||
path: web-ext-artifacts | ||
name: firefox-signed | ||
- name: Upload release asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: web-ext-artifacts/*.xpi | ||
asset_name: firefox.xpi | ||
asset_content_type: application/x-xpinstall | ||
- name: Trigger workflow on website | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: cd.yaml | ||
repo: NIAEFEUP/nitsig-website | ||
inputs: '{ "version": "${{ github.event.release.name }}" }' | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# opera: | ||
# name: Deploy to Opera | ||
# runs-on: ubuntu-latest | ||
# needs: build | ||
# steps: | ||
# - name: Download artifact | ||
# uses: actions/download-artifact@v2 | ||
# with: | ||
# name: chrome | ||
|
||
# safari: | ||
# name: Deploy to Safari | ||
# runs-on: macos-latest | ||
# needs: build | ||
# steps: | ||
# - name: Download artifact | ||
# uses: actions/download-artifact@v2 | ||
# with: | ||
# name: safari | ||
# - run: ls -R |
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
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
Oops, something went wrong.