Skip to content

MAILGTMACTION

MAILGTMACTION #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup pnpm
uses: pnpm/[email protected]
with:
run_install: true
- name: Build the project
run: pnpm build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
env:
VITE_GTM_ID: ${{ secrets.GTM_ID }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist