Skip to content

fix/ga4-tag (#447) #251

fix/ga4-tag (#447)

fix/ga4-tag (#447) #251

name: build-deploy-production
on:
push:
branches:
- master
jobs:
build-production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- run: npm install
- run: npm run prod:build
- uses: actions/upload-artifact@v4
with:
name: dist
path: |
dist
deploy-production:
needs: build-production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/download-artifact@v4
with:
name: dist
path: |
dist
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.6.3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
visual-test:
needs: deploy-production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm install
- run: npm run starterkit:build