feat: tutorial issue credential cloud agent issuer to edge agent holder #320
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
name: Documentation build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: prism-documentation-portal | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
token: ${{ secrets.ATALA_GITHUB_TOKEN }} | |
fetch-depth: 0 | |
- name: Update submodules | |
run: | | |
git submodule update --remote --recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build website | |
run: | | |
yarn build --out-dir infra/website | |
release: | |
if: github.event_name == 'push' && !contains(github.event.head_commit.message, 'chore(release)') | |
uses: ./.github/workflows/release.yml | |
secrets: inherit | |
deploy: | |
if: startsWith(github.ref, 'refs/tags') && contains(github.event.head_commit.message, 'chore(release)') | |
uses: ./.github/workflows/deployment.yml | |
with: | |
version: "${{ github.ref_name }}" | |
env: "staging" | |
secrets: inherit |