Skip to content

Windup 6.3.4.Final release notes (#39) #37

Windup 6.3.4.Final release notes (#39)

Windup 6.3.4.Final release notes (#39) #37

Workflow file for this run

name: Gatsby Publish
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
env:
# Point to the subpath of the domain
GATSBY_PATH_PREFIX: /
GATSBY_BUILD_ENV: production
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install dependencies
run: npm install --force
- name: Build
run: npm run build:gh
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
keep_files: "false"