Skip to content

Commit c4864c0

Browse files
authored
Merge branch 'main' into dappnodebot/bump-upstream/nextcloud/server@v34.0.0beta2
2 parents 0189a9d + 52a3ba7 commit c4864c0

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
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"

docker-compose.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)