Skip to content

Merge pull request #20 from crypto-com/add-logos #5

Merge pull request #20 from crypto-com/add-logos

Merge pull request #20 from crypto-com/add-logos #5

Workflow file for this run

name: Production Deployment
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Yarn Install
run: |
yarn install
- name: Build
run: |
yarn codegen
- name: Deploy
run: |
yarn deploy -- --access-token ${{ secrets.PRODUCTION_TOKEN }}