Skip to content

added debug

added debug #58

Workflow file for this run

name: Build App and Deploy
on:
push:
branches: [ gh-pages-code ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build application and push
run: |
yarn install
echo ${GITHUB_REPOSITORY}
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
yarn deploy -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}