Skip to content

feat: migrate to custom domain #66

feat: migrate to custom domain

feat: migrate to custom domain #66

Workflow file for this run

name: deploy
on:
workflow_dispatch:
push:
branches: ["master"]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: Byndyusoft/node-reusable-workflows/.github/actions/install@master
with:
node-version: lts/*
- run: yarn run build
env:
VITE_GIT_COMMIT_SHA: ${{ github.sha }}
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v2
with:
path: ./dist
- uses: actions/deploy-pages@v2
id: deployment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}