29 lines
622 B
YAML
29 lines
622 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
tags:
|
|
- 'v*.*.*'
|
|
|
|
jobs:
|
|
release:
|
|
uses: Wavyzz/ci-workflows/.github/workflows/docker-build-publish.yml@v1
|
|
with:
|
|
registry_host: ${{ secrets.REGISTRY_HOST }}
|
|
images: |
|
|
[
|
|
{
|
|
"name": "cf-bypass-fast",
|
|
"cache_ref": "cf-bypass-fast:buildcache",
|
|
"dockerfile": "./Dockerfile",
|
|
"context": "./"
|
|
}
|
|
]
|
|
secrets:
|
|
registry_user: ${{ secrets.REGISTRY_USER }}
|
|
registry_password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
ci_token: ${{ secrets.CI_GITEA_TOKEN }}
|
|
|