All checks were successful
Build and Test Staging / determine_version (pull_request) Successful in 7s
Build and Test Staging / build_and_push (pull_request) Successful in 6s
Build and Test Staging / deploy_production (pull_request) Successful in 6s
Build and Test Staging / test (pull_request) Successful in 5s
19 lines
402 B
YAML
19 lines
402 B
YAML
name: Build and Test Staging
|
|
on:
|
|
pull_request:
|
|
types: [ opened, synchronize, reopened ]
|
|
|
|
jobs:
|
|
determine_version:
|
|
uses: ./.gitea/workflows/build-common.yaml
|
|
with:
|
|
build_environment: staging
|
|
|
|
build_and_push:
|
|
uses: ./.gitea/workflows/build-common.yaml
|
|
|
|
test:
|
|
uses: ./.gitea/workflows/build-common.yaml
|
|
|
|
deploy_production:
|
|
uses: ./.gitea/workflows/build-common.yaml |