File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ runs-on : ubuntu-latest
24+ if : github.event_name == 'push'
25+ steps :
26+ - uses : actions/checkout@v3
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"
Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ services:
1818 MYSQL_PASSWORD : nextcloud_dappnode_pass
1919 MYSQL_HOST : db.nextcloud.dnp.dappnode.eth
2020 REDIS_HOST : redis.nextcloud.dnp.dappnode.eth
21+ MYSQL_DATABASE : " nextcloud"
22+ MYSQL_USER : " nextcloud"
23+ MYSQL_PASSWORD : " nextcloud_dappnode_pass"
24+ MYSQL_HOST : " DAppNodePackage-db.nextcloud.dnp.dappnode.eth"
25+ REDIS_HOST : " DAppNodePackage-redis.nextcloud.dnp.dappnode.eth"
2126 REDIS_HOST_PORT : " 6379"
2227 APACHE_LISTEN_PORT : " 8034"
2328 APACHE_PORT : " 8034"
You can’t perform that action at this time.
0 commit comments