We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1643698 commit 89d9595Copy full SHA for 89d9595
2 files changed
.github/workflows/build.yml
@@ -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
@@ -4,7 +4,6 @@ on:
push:
branches:
- "master"
- - "v[0-9]+.[0-9]+.[0-9]+"
paths-ignore:
- "README.md"
@@ -26,14 +25,6 @@ jobs:
26
25
- run: yarn test
27
- run: yarn test:int
28
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
-
37
release:
38
name: Release
39
runs-on: ubuntu-latest
0 commit comments