Skip to content

Commit

Permalink
Introduce CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed May 31, 2024
1 parent b6fd7da commit 8cff68b
Show file tree
Hide file tree
Showing 2 changed files with 3,459 additions and 31 deletions.
75 changes: 44 additions & 31 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,44 @@
#name: Deploy
#on:
# push:
# branches: ['main']
#jobs:
# deploy:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
#
# - name: Install Node.js
# uses: actions/setup-node@v4
# with:
# node-version: '20.x'
#
# - name: Install Dependencies
# run: |
# npm i
#
# - name: Run Check
# run: |
# npm run build
#
# - uses: actions/checkout@v4
# - name: Deploy
# uses: zcloud-ws/zcloud-deploy-action@main
# with:
# # Add your ZCLOUD_USER_TOKEN to your repository secrets
# user-token: ${{ secrets.ZCLOUD_USER_TOKEN }}
# env: "your-app-env-name"
name: Deploy to IPFS signal

on:
push:
branches:
- "master"

jobs:
zip-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/[email protected]
name: Install pnpm
id: pnpm-install
with:
version: 8
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: pnpm install
- name: Build
run: pnpm build
- name: Edgeserver Upload
uses: lvkdotsh/edgeserver-action@master
with:
app_id: "289766393082386979"
server: https://api.edgeserver.io
token: ${{ secrets.SIGNAL_TOKEN }}
directory: dist
Loading

0 comments on commit 8cff68b

Please sign in to comment.