Skip to content

Merge pull request #25 from AAP9002/patch-api-returning-Invalid-API-U… #30

Merge pull request #25 from AAP9002/patch-api-returning-Invalid-API-U…

Merge pull request #25 from AAP9002/patch-api-returning-Invalid-API-U… #30

Workflow file for this run

on:
push:
branches:
- "main" # change to the branch you wish to deploy from
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.build-publish.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: 'Build'
shell: bash
run: |
echo "::group::Build"
cd client
npm ci
npm install
npm run build
echo "::endgroup::"
- name: 'upload'
uses: actions/[email protected]
with:
path: ./client/build
- id: deploy
name: Deploy to GitHub Pages
uses: actions/deploy-pages@v1
with:
token: ${{ github.token }}