Commenting out API Spec: API ID needs to be created in docusaurus.con… #33
Workflow file for this run
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
# Workflow to test build the docusaurus documentation page | |
# This workflow can be included for pull request rules to succeed | |
name: Build test | |
on: | |
push: | |
branches: | |
- '**' # matches every branch | |
- '!main' # excludes main | |
env: | |
IMAGE: europe-west4-docker.pkg.dev/sacred-sol-99413/setu/documentation | |
jobs: | |
setup-build: | |
name: Setup and build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Docker build | |
run: |- | |
docker build \ | |
--tag "$IMAGE:$GITHUB_SHA" \ | |
--build-arg GITHUB_SHA="$GITHUB_SHA" \ | |
--build-arg GITHUB_REF="$GITHUB_REF" \ | |
. |