-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (37 loc) · 890 Bytes
/
pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Upload NFT and Metadata
env:
NFT_STORAGE_TOKEN: ${{ secrets.NFT_STORAGE_TOKEN }}
PINATA_TOKEN: ${{ secrets.PINATA_TOKEN }}
on:
pull_request:
types: [ready_for_review]
branches:
- main
paths:
- 'release.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Prepare
run: |
git --version
git config user.name "GitHub Actions Bot"
git config user.email ""
git fetch --all
git checkout release
git pull
- name: Upload to ipfs
run: |
npm install
npm run start upload
- name: Commit
run: |
git add .
git commit -m "Update ipfs address"
git push