Merge pull request #11 from NMSCD/develop #20
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 | |
on: | |
push: | |
branches: ['main'] | |
jobs: | |
build: | |
environment: github-pages | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [19.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Setup Secrets | |
env: | |
REACT_APP_ENABLE_ANALYTICS: ${{ secrets.REACT_APP_ENABLE_ANALYTICS }} | |
run: | | |
touch .env | |
echo REACT_APP_ENABLE_ANALYTICS="$REACT_APP_ENABLE_ANALYTICS" >> .env | |
- name: Install packages | |
run: | | |
npm ci --force | |
- name: Rebuild SEO | |
run: | | |
npm run seo | |
- name: Build TS | |
run: | | |
PUBLIC_URL="." npm run build | |
- name: Edit .gitignore | |
run: | | |
cd public | |
echo "/github-pages-deploy-action-temp-deployment-folder" > ./.gitignore | |
echo "" >> ./.gitignore | |
echo "preload.js" >> ./.gitignore | |
echo "electron.js" >> ./.gitignore | |
- name: Add .nojekyll | |
run: | | |
cd public | |
touch .nojekyll | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
folder: build # The folder the action should deploy. |