223c9b8abc
CI Feature / Load example-gitea-env.conf to pipeline env (push) Successful in 19s
Hello World (Manual) / greet (push) Successful in 5s
unit-tests Link to Bats reports
CI Feature / Bats tests (push) Successful in 1m49s
acc-tests Link to Cucumber reports
CI Feature / Report Summary (push) Has been cancelled
CI Feature / Cucumber tests (push) Has been cancelled
22 lines
589 B
YAML
22 lines
589 B
YAML
name: Build CI Bats Container (Manual)
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
load-config:
|
|
name: Load config
|
|
uses: niko/gitea-ci-library/.gitea/workflows/config-provider.yml@main
|
|
secrets: inherit
|
|
with:
|
|
config_path: .gitea/workflows/example-gitea-env.conf
|
|
|
|
build-push:
|
|
name: Build & Push
|
|
needs: [load-config]
|
|
uses: niko/gitea-ci-library/.gitea/workflows/ci-container-build-push.yml@main
|
|
secrets: inherit
|
|
with:
|
|
env_json: ${{ needs.load-config.outputs.env_json }}
|
|
dockerfile_path: Dockerfile.ci-bats
|
|
image_name: ci-bats
|
|
tag: latest
|