Skip to content

CD

CD #5343

Workflow file for this run

name: CD
on:
push:
branches:
- main
schedule:
- cron: '0 */6 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version-file: .tool-versions
cache: npm
- run: make dependencies
- run: make build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOOGLE_TAG_MANAGER_ID: GTM-TW4FPB3
GATSBY_ONETRUST_SITE_ID: a3262467-ddbd-43f1-8a4e-1ba8005d634c
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
cname: open.mirego.com
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'