Skip to content
name: Deploy to Edgeserver
on:
push:
branches:
- "master"
paths:
- "client/**"
- ".github/workflows/**"
jobs:
zip-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/[email protected]
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: |
cd client
pnpm install
- name: Build
run: |
cd client
pnpm build
- name: Edgeserver Upload
uses: lvkdotsh/[email protected]
with:
app_id: "81562295288729600"
server: https://api.edgeserver.io
token: ${{ secrets.SIGNAL_TOKEN }}
directory: client/dist