diff --git a/.drone.yml b/.drone.yml index 28d726f..c79239e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -18,6 +18,39 @@ steps: password: from_secret: PASSWORD +trigger: + branch: + - master + event: + - push + +--- +kind: pipeline +type: docker +name: linux-arm64 + +platform: + os: linux + arch: arm64 + +steps: + - name: docker + image: plugins/docker + settings: + auto_tag: true + auto_tag_suffix: linux-arm64 + repo: samuelph/synapse-compress-state + username: + from_secret: USERNAME + password: + from_secret: PASSWORD + +trigger: + branch: + - master + event: + - push + --- kind: pipeline type: docker @@ -39,6 +72,12 @@ steps: password: from_secret: PASSWORD +trigger: + branch: + - master + event: + - push + --- kind: pipeline type: docker @@ -54,6 +93,7 @@ steps: template: samuelph/synapse-compress-state:OS-ARCH platforms: - linux/amd64 + - linux/arm64 - linux/arm username: from_secret: USERNAME @@ -62,4 +102,11 @@ steps: depends_on: - linux-amd64 + - linux-arm64 - linux-arm + +trigger: + branch: + - master + event: + - push diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..7e23eca --- /dev/null +++ b/renovate.json @@ -0,0 +1,9 @@ +{ + "assignees": [ + "samuel-p" + ], + "baseBranches": [ + "master" + ], + "rangeStrategy": "bump" +}