Re-attempting deploy #35
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: Build and Deploy | |
env: | |
PUBLIC_URL: https://monicauxui.design | |
on: | |
workflow_dispatch: | |
push: | |
branches: main | |
concurrency: | |
group: pages | |
cancel-in-progress: false | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.2.0 | |
cache: 'npm' | |
- name: Install NPM Dependencies | |
run: npm install --omit=dev | |
- name: Build | |
run: npm run build | |
- name: Setup File System | |
run: > | |
mv CNAME build/ /tmp/ && | |
rm -rf * && | |
mv /tmp/CNAME /tmp/build/ ./ && | |
mv build/index.html . && | |
mv build public | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: '.' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |