8622b6fc4e
CI Main / Load example-gitea-env.conf to pipeline env (push) Successful in 19s
CI Main / Check existing artifact (push) Successful in 14s
unit-tests Link to Bats reports
CI Main / Bats tests (push) Successful in 1m43s
acc-tests Link to Cucumber reports
CI Main / Cucumber tests (push) Successful in 1m9s
ci-docker-build-push Docker build & push 0.2.4 OK
CI Main / Build & Push Docker (push) Successful in 37s
CI Main / Report Summary (push) Successful in 5s
CI Main / Move provider version tag (push) Successful in 13s
Co-authored-by: moilanik <niko.moilanen@tietoevry.com> Reviewed-on: #15
22 lines
601 B
YAML
22 lines
601 B
YAML
name: Build CI Cucumber 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-cucumber
|
|
image_name: ci-cucumber
|
|
tag: latest
|