Set Yarn version #5
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Github Pages | |
on: workflow_dispatch | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node v16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
cache-dependency-path: 'yarn.lock' | |
- name: Enable Corepack for Yarn | |
run: corepack enable | |
- name: Install Yarn v3 | |
uses: yarn set version .yarn/releases/yarn-3.2.4.cjs | |
- name: Install Dependencies | |
run: yarn install | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
- name: Build site | |
run: yarn build | |
env: | |
NODE_OPTIONS: "--max-old-space-size=8192" | |
PREFIX_PATHS: true # works like --prefix-paths flag for 'gatsby build' | |
PATH_PREFIX: ${{ github.event.repository.name }} | |
ADOBE_LAUNCH_SRC: ${{ secrets.AIO_ADOBE_LAUNCH_SRC }} | |
ADOBE_LAUNCH_SRC_INCLUDE_IN_DEVELOPMENT: ${{ secrets.ADOBE_LAUNCH_SRC_INCLUDE_IN_DEVELOPMENT }} | |
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPO_OWNER: ${{ github.event.repository.owner.login }} | |
REPO_NAME: ${{ github.event.repository.name }} | |
REPO_BRANCH: ${{ github.ref_name }} | |
GOOGLE_OAUTH_CLIENT_ID: ${{ secrets.GOOGLE_OAUTH_CLIENT_ID }} | |
GOOGLE_OAUTH_CLIENT_SECRET: ${{ secrets.GOOGLE_OAUTH_CLIENT_SECRET }} | |
GOOGLE_DOCS_TOKEN: ${{ secrets.GOOGLE_DOCS_TOKEN }} | |
GOOGLE_DOCS_FOLDER_ID: ${{ secrets.GOOGLE_DOCS_FOLDER_ID }} | |
- name: Deploy to GH Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages # The branch the action should deploy to. | |
folder: public # The folder the action should deploy. | |
clean: true # Automatically remove deleted files from deploy branch | |
- name: GH Pages URL | |
id: gh-pages-url | |
run: | | |
echo "View GH-Pages: $(https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }})" |