Skip to content

Add community label requests (#9) #20

Add community label requests (#9)

Add community label requests (#9) #20

Workflow file for this run

on:
push:
branches:
- "master"
jobs:
deploy:
name: "Deploy"
runs-on: "ubuntu-latest"
environment:
name: "Dev"
url: ${{ vars.DEPLOY_API_URL }}
defaults:
run:
working-directory: "games"
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-node@v3"
with:
cache-dependency-path: "games/yarn.lock"
- name: "Install dependencies"
run: "yarn install --frozen-lockfile"
- name: "Build"
run: "yarn run build"
- name: "Deploy"
run: "yarn run deploy"
env:
DEPLOY_API_URL: ${{ vars.DEPLOY_API_URL }}
DEPLOY_API_KEY: ${{ secrets.DEPLOY_API_KEY }}