Merge pull request #3241 from getAlby/fix-avatar-position #8935
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
name: Build extension packages | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: build-prod | |
env: | |
ALBY_API_URL: "https://api.getalby.com" | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "yarn" | |
- run: yarn install | |
- name: Build firefox | |
run: yarn build:firefox | |
- name: Build chrome | |
run: yarn build:chrome | |
- name: Archive firefox production zip file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firefox.xpi | |
path: dist/production/firefox.xpi | |
- name: Archive chrome production zip file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: chrome.zip | |
path: dist/production/chrome.zip |