Skip to content

Merge pull request #3 from mrleblanc101/release/2.1 #77

Merge pull request #3 from mrleblanc101/release/2.1

Merge pull request #3 from mrleblanc101/release/2.1 #77

Workflow file for this run

name: gh-pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
node: [ 20 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install
- run: NUXT_APP_BASE_URL=/neobigben/ COMMIT_SHORT_SHA=$(git rev-parse --short ${{ github.sha }}) COMMIT_TAG=${{ github.ref_name }} yarn generate
- uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: '.output/public'
CLEAN: true