Skip to content

Manual builds

Manual builds #272

Workflow file for this run

name: Manual builds
on:
workflow_dispatch:
inputs:
chrome:
type: boolean
description: Chrome build
required: false
firefox:
type: boolean
description: Firefox build
required: false
jobs:
additional-builds:
name: Creates builds for a specific browsers
runs-on: ubuntu-latest
environment: development
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Use Node 16.x
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Secrets setup
uses: ./.github/workflows/secrets-setup
with:
GITHUB_ACTION_RUN_ENV: development
TEMPLE_WALLET_JITSU_TRACKING_HOST: ${{ vars.TEMPLE_WALLET_JITSU_TRACKING_HOST }}
TEMPLE_WALLET_JITSU_WRITE_KEY: ${{ vars.TEMPLE_WALLET_JITSU_WRITE_KEY }}
TEMPLE_WALLET_EXOLIX_API_KEY: ${{ secrets.TEMPLE_WALLET_EXOLIX_API_KEY }}
TEMPLE_WALLET_EVERSTAKE_API_KEY: ${{ secrets.TEMPLE_WALLET_EVERSTAKE_API_KEY }}
TEMPLE_WALLET_EVERSTAKE_LINK_ID: ${{ secrets.TEMPLE_WALLET_EVERSTAKE_LINK_ID }}
TEMPLE_WALLET_UTORG_SID: ${{ secrets.TEMPLE_WALLET_UTORG_SID }}
TEMPLE_WALLET_API_URL: ${{ vars.TEMPLE_WALLET_API_URL }}
TEMPLE_WALLET_STATIC_API_URL: ${{ vars.TEMPLE_WALLET_STATIC_API_URL }}
TEMPLE_WALLET_DEXES_API_URL: ${{ vars.TEMPLE_WALLET_DEXES_API_URL }}
TEMPLE_WALLET_ROUTE3_AUTH_TOKEN: ${{ vars.TEMPLE_WALLET_ROUTE3_AUTH_TOKEN }}
TEMPLE_WALLET_MOONPAY_API_KEY: ${{ secrets.TEMPLE_WALLET_MOONPAY_API_KEY }}
- name: Install dependencies and code quality
uses: ./.github/workflows/code-quality-check
- name: Create Chrome build
if: ${{ github.event.inputs.chrome == 'true' }}
run: yarn build:chrome
- name: Upload Chrome artifact
if: ${{ github.event.inputs.chrome == 'true' }}
uses: actions/upload-artifact@v2
with:
name: chrome
path: dist/chrome.zip
if-no-files-found: error
retention-days: 30
- name: Create Firefox build
if: ${{ github.event.inputs.firefox == 'true' }}
run: yarn build:firefox
- name: Upload Firefox artifact
if: ${{ github.event.inputs.firefox == 'true' }}
uses: actions/upload-artifact@v2
with:
name: firefox
path: dist/firefox.xpi
if-no-files-found: error
retention-days: 30