diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e6e99cb..aead723 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,10 +1,9 @@ -# Sample workflow for building and deploying a VitePress site to GitHub Pages +# Workflow for building and deploying to dev # -name: Deploy VitePress site to Pages +name: Deploy Vite site to Pages (dev) on: - # Runs on pushes targeting the `main` branch. Change this to `master` if you're - # using the `master` branch as the default branch. + # Runs on pushes targeting the `main` branch. push: branches: [main] @@ -43,7 +42,7 @@ jobs: uses: actions/configure-pages@v4 - name: Install dependencies run: yarn install # or pnpm install / yarn install / bun install - - name: Build with VitePress + - name: Build env: VITE_FIREBASE_API_KEY: "${{ secrets.VITE_FIREBASE_API_KEY }}" VITE_FIREBASE_AUTH_DOMAIN: "${{ secrets.VITE_FIREBASE_AUTH_DOMAIN }}" @@ -56,7 +55,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - path: docs/.vitepress/dist + path: docs/dist/dev # Deployment job deploy: diff --git a/.github/workflows/deploy_prod.yml b/.github/workflows/deploy_prod.yml new file mode 100644 index 0000000..cf7ad3f --- /dev/null +++ b/.github/workflows/deploy_prod.yml @@ -0,0 +1,72 @@ +# Workflow for building and deploying to dev +# +name: Deploy Vite site to Pages (prod) + +on: + # Runs on pushes targeting the `main` branch and are tagged. + push: + tags: + - '**' + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: pages + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 # Not needed if lastUpdated is not enabled + # - uses: pnpm/action-setup@v3 # Uncomment this if you're using pnpm + # - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: yarn # or pnpm / yarn + - name: Setup Pages + uses: actions/configure-pages@v4 + - name: Install dependencies + run: yarn install # or pnpm install / yarn install / bun install + - name: Build + env: + VITE_FIREBASE_API_KEY: "${{ secrets.VITE_FIREBASE_API_KEY_prod }}" + VITE_FIREBASE_AUTH_DOMAIN: "${{ secrets.VITE_FIREBASE_AUTH_DOMAIN_prod }}" + VITE_FIREBASE_DATABASE_URL: "${{ secrets.VITE_FIREBASE_DATABASE_URL_prod }}" + VITE_FIREBASE_PROJECT_ID: "${{ secrets.VITE_FIREBASE_PROJECT_ID_prod }}" + VITE_FIREBASE_STORAGE_BUCKET: "${{ secrets.VITE_FIREBASE_STORAGE_BUCKET_prod }}" + VITE_FIREBASE_MESSAGING_SENDER_ID: "${{ secrets.VITE_FIREBASE_MESSAGING_SENDER_ID_prod }}" + VITE_FIREBASE_APP_ID: "${{ secrets.VITE_FIREBASE_APP_ID_prod }}" + run: yarn build-ghpages # or pnpm docs:build / yarn docs:build / bun run docs:build + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: docs/dist + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + needs: build + runs-on: ubuntu-latest + name: Deploy + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4t \ No newline at end of file