Skip to content

Commit 89d9595

Browse files
committed
Add build on Pinata action
1 parent 1643698 commit 89d9595

2 files changed

Lines changed: 15 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build test
2+
on:
3+
push:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- run: npx @dappnode/dappnodesdk github-action build
12+
env:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }}
15+
PINATA_SECRET_API_KEY: ${{ secrets.PINATA_SECRET_API_KEY }}

.github/workflows/main.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- "master"
7-
- "v[0-9]+.[0-9]+.[0-9]+"
87
paths-ignore:
98
- "README.md"
109

@@ -26,14 +25,6 @@ jobs:
2625
- run: yarn test
2726
- run: yarn test:int
2827

29-
build-test:
30-
runs-on: ubuntu-16.04
31-
name: Build test
32-
steps:
33-
- name: Checkout
34-
uses: actions/checkout@v2
35-
- run: docker-compose build
36-
3728
release:
3829
name: Release
3930
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)