Update A4T section to provide further clarification on server and cli… #169
This file contains 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: | |
push: | |
branches: [main] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Yarn Install | |
uses: bahmutov/npm-install@v1 | |
- name: Build | |
run: | | |
yarn build | |
env: | |
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://adobedocs.github.io/${{ github.event.repository.name }})" |