Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
moonpic authored Jun 18, 2024
1 parent 2686247 commit 260db06
Showing 1 changed file with 102 additions and 3 deletions.
105 changes: 102 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,102 @@
- name: Push to Gitlab server
uses: saderi/push-to-gitlab@v1

name: Deploy

on:
workflow_dispatch: {}
push:
branches:
- main

env:
VITE_BASE: /
VITE_HOSTNAME: https://himitsu2.vercel.app

jobs:
deploy-api:
runs-on: ubuntu-latest

steps:
- name: Checkout API
uses: actions/checkout@v4
with:
fetch-depth: 0
path: api

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: |
cd api
npm install
- name: Deploy API to Vercel
run: |
cd api
npx vercel --prod --token ${{ secrets.VERCEL_TOKEN }}
deploy-site:
runs-on: ubuntu-latest
needs: deploy-api
defaults:
run:
working-directory: "website"

permissions:
contents: read
pages: write
id-token: write

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
package_json_file: "website/package-lock.json"

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- name: Configure pages
uses: actions/configure-pages@v5

- name: Upload pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: website/dist

- name: Deploy
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 260db06

Please sign in to comment.