Skip to content

feat: [ASSMT-650]: show not supported stages in console (#140) #106

feat: [ASSMT-650]: show not supported stages in console (#140)

feat: [ASSMT-650]: show not supported stages in console (#140) #106

Workflow file for this run

on:
push:
branches:
- master
- docs
permissions:
id-token: write
pages: write
contents: read
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./docs
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
cache-dependency-path: '**/yarn.lock' # THIS PATTERN did the trick for me.
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: Build
run: yarn build
- name: Setup Pages
uses: actions/configure-pages@v1
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: docs/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1