Skip to content

change compile command, add debug step to workflows #42

change compile command, add debug step to workflows

change compile command, add debug step to workflows #42

Workflow file for this run

name: Deploy web app
on:
push:
branches:
- main
workflow_call:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- if: runner.debug == '1'
uses: mxschmitt/action-tmate@v3
- name: Install packages
run: yarn install
- name: Build app
run: yarn build
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@v4
with:
clean: true
folder: dist