Skip to content

fix: repository link in header #3

fix: repository link in header

fix: repository link in header #3

Workflow file for this run

name: Deploy React/Next.js application
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x.x
cache: npm
- name: Install
run: npm ci
- name: Test
run: npx jest
- name: Build
run: |
export REPOSITORY_NAME=sagemaker-annotation-converter
npm run build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: out/
deploy:
needs: build
permissions:
repository-projects: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2