-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3,459 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.