21 lines
427 B
YAML
21 lines
427 B
YAML
matrix:
|
|
GO_VERSION:
|
|
- 1.24
|
|
- 1.25
|
|
- latest
|
|
|
|
when:
|
|
- event: [push, manual]
|
|
branch: main
|
|
|
|
steps:
|
|
- name: Build & publish container
|
|
image: woodpeckerci/plugin-kaniko:1.3.0
|
|
settings:
|
|
registry: ${CI_FORGE_URL##https://}
|
|
repo: ${CI_REPO_OWNER}/${CI_REPO_NAME}
|
|
tags: ${GO_VERSION}
|
|
username:
|
|
from_secret: forge-username
|
|
password:
|
|
from_secret: forge-token
|