Skip to content

Commit

Permalink
Create web.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgz0227 committed May 16, 2024
1 parent f36abdf commit 6744387
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Build Web

on:
push:
branches:
- master
paths:
- '**/entry/web/**'
pull_request:
paths:
- '**/entry/web/**'
workflow_dispatch:

env:
UPSTREAM_REPOSITORY: mgz0227/legado-Harmony

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

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

- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/web/package.json') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Build and move files
working-directory: entry/web
run: |
pnpm i
pnpm build
version="v$(date -d "8 hour" -u +3.%y.%m%d%H)"
echo "APP_VER=$version" >> $GITHUB_ENV
- name: push changes
if: ${{ github.event_name != 'pull_request' && github.repository == env.UPSTREAM_REPOSITORY }}
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_message: Bump web ${{ env.APP_VER}}
file_pattern: entry/src/main/resources/vue

0 comments on commit 6744387

Please sign in to comment.