Skip to content

Commit a298cea

Browse files
committed
Merge branch 'main' of https://github.com/deradnet/SkyQuery
2 parents 1b06330 + fec514c commit a298cea

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Arweave Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
Arweave-build-and-deploy:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Setup Node.js environment
16+
uses: actions/setup-node@v2
17+
with:
18+
node-version: "20"
19+
20+
- name: Run deployment script
21+
env:
22+
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
23+
run: |
24+
npm install
25+
npm run deploy

0 commit comments

Comments
 (0)