drone build and public to ghcr also
This commit is contained in:
parent
b7c5fee65f
commit
2de4cd5da6
61
.drone.yml
61
.drone.yml
@ -41,7 +41,7 @@ steps:
|
|||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
|
||||||
# Build containers from main branch
|
# Build containers from main branch
|
||||||
- name: build
|
- name: build-gitea
|
||||||
image: thegeeklab/drone-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
privileged: true
|
privileged: true
|
||||||
settings:
|
settings:
|
||||||
@ -56,16 +56,46 @@ steps:
|
|||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
|
|
||||||
- name: release
|
- name: build-github
|
||||||
|
image: thegeeklab/drone-docker-buildx
|
||||||
|
privileged: true
|
||||||
|
settings:
|
||||||
|
provenance: false
|
||||||
|
registry: ghcr.io
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: github_token
|
||||||
|
repo: ghcr.io/mrmeeb/cronicle
|
||||||
|
platforms:
|
||||||
|
- linux/arm64
|
||||||
|
- linux/amd64
|
||||||
|
|
||||||
|
- name: release-gitea
|
||||||
image: goreleaser/goreleaser
|
image: goreleaser/goreleaser
|
||||||
environment:
|
environment:
|
||||||
GITEA_TOKEN:
|
GITEA_TOKEN:
|
||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
commands:
|
commands:
|
||||||
- goreleaser release
|
- goreleaser release -f .goreleaser-gitea.yaml
|
||||||
when:
|
when:
|
||||||
ref:
|
ref:
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
depends_on:
|
||||||
|
- build-gitea
|
||||||
|
|
||||||
|
- name: release-github
|
||||||
|
image: goreleaser/goreleaser
|
||||||
|
environment:
|
||||||
|
GITHUB_TOKEN:
|
||||||
|
from_secret: github_token
|
||||||
|
commands:
|
||||||
|
- goreleaser release -f .goreleaser-github.yaml
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/**
|
||||||
|
depends_on:
|
||||||
|
- build-github
|
||||||
|
|
||||||
- name: notify
|
- name: notify
|
||||||
image: plugins/slack
|
image: plugins/slack
|
||||||
@ -76,6 +106,9 @@ steps:
|
|||||||
settings:
|
settings:
|
||||||
webhook:
|
webhook:
|
||||||
from_secret: slack_webhook
|
from_secret: slack_webhook
|
||||||
|
depends_on:
|
||||||
|
- release-gitea
|
||||||
|
- release-github
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
@ -100,7 +133,7 @@ steps:
|
|||||||
- echo -n "develop-${DRONE_COMMIT_SHA:0:8}, develop" > .tags
|
- echo -n "develop-${DRONE_COMMIT_SHA:0:8}, develop" > .tags
|
||||||
|
|
||||||
# Build containers from develop branch
|
# Build containers from develop branch
|
||||||
- name: build
|
- name: build-gitea
|
||||||
image: thegeeklab/drone-docker-buildx
|
image: thegeeklab/drone-docker-buildx
|
||||||
privileged: true
|
privileged: true
|
||||||
settings:
|
settings:
|
||||||
@ -115,6 +148,21 @@ steps:
|
|||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
|
|
||||||
|
- name: build-github
|
||||||
|
image: thegeeklab/drone-docker-buildx
|
||||||
|
privileged: true
|
||||||
|
settings:
|
||||||
|
provenance: false
|
||||||
|
registry: ghcr.io
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: github_token
|
||||||
|
repo: ghcr.io/mrmeeb/cronicle
|
||||||
|
platforms:
|
||||||
|
- linux/arm64
|
||||||
|
- linux/amd64
|
||||||
|
|
||||||
- name: notify
|
- name: notify
|
||||||
image: plugins/slack
|
image: plugins/slack
|
||||||
when:
|
when:
|
||||||
@ -123,4 +171,7 @@ steps:
|
|||||||
- failure
|
- failure
|
||||||
settings:
|
settings:
|
||||||
webhook:
|
webhook:
|
||||||
from_secret: slack_webhook
|
from_secret: slack_webhook
|
||||||
|
depends_on:
|
||||||
|
- build-gitea
|
||||||
|
- build-github
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
dist/
|
dist-gitea/
|
||||||
|
dist-github/
|
||||||
.tags
|
.tags
|
@ -1,3 +1,5 @@
|
|||||||
|
dist: dist-gitea
|
||||||
|
|
||||||
build:
|
build:
|
||||||
skip: true
|
skip: true
|
||||||
|
|
20
.goreleaser-github.yaml
Normal file
20
.goreleaser-github.yaml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
dist: dist-github
|
||||||
|
|
||||||
|
build:
|
||||||
|
skip: true
|
||||||
|
|
||||||
|
archives:
|
||||||
|
- format: binary
|
||||||
|
|
||||||
|
release:
|
||||||
|
draft: true
|
||||||
|
github:
|
||||||
|
owner: MrMeeb
|
||||||
|
name: cronicle-docker
|
||||||
|
|
||||||
|
changelog:
|
||||||
|
sort: asc
|
||||||
|
filters:
|
||||||
|
exclude:
|
||||||
|
- '^docs:'
|
||||||
|
- '^test:'
|
Loading…
x
Reference in New Issue
Block a user