We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9816804 commit ac9cbb3Copy full SHA for ac9cbb3
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,31 @@
1
+name: "Main"
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - "main"
7
+ - "master"
8
+ - "v[0-9]+.[0-9]+.[0-9]+"
9
+ paths-ignore:
10
+ - "README.md"
11
+
12
+jobs:
13
+ build-test:
14
+ runs-on: ubuntu-latest
15
+ name: Build test
16
+ if: github.event_name != 'push'
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - run: npx @dappnode/dappnodesdk build --skip_save
20
21
+ release:
22
+ name: Release
23
24
+ if: github.event_name == 'push'
25
26
27
+ - name: Publish
28
+ run: npx @dappnode/dappnodesdk publish patch --dappnode_team_preset
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
+ DEVELOPER_ADDRESS: "0xf35960302a07022aba880dffaec2fdd64d5bf1c1"
0 commit comments