We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b06330 + fec514c commit a298ceaCopy full SHA for a298cea
.github/workflows/deploy.yml
@@ -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