githubissues/deploy.cloudbuild.yaml (25 lines of code) (raw):

# Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. steps: # Build the binary and put it into the builder image. - name: gcr.io/cloud-builders/docker args: - build - --tag=${_REGISTRY}/githubissues:${TAG_NAME} - --tag=${_REGISTRY}/githubissues:${_MAJOR_LATEST} - --tag=${_REGISTRY}/githubissues:latest - --file=./githubissues/Dockerfile - '.' # Run the smoketest to verify that everything built correctly. - name: ${_REGISTRY}/githubissues:${TAG_NAME} args: - --smoketest - --alsologtostderr # Push the image with tags. images: - ${_REGISTRY}/githubissues:${TAG_NAME} - ${_REGISTRY}/githubissues:${_MAJOR_LATEST} - ${_REGISTRY}/githubissues:latest options: dynamic_substitutions: true substitutions: _REGISTRY: us-east1-docker.pkg.dev/gcb-release/cloud-build-notifiers # Looks like: $NOTIF-$MAJOR-latest. Not meant for overriding. _MAJOR_LATEST: "${TAG_NAME%%.*}-latest" tags: - cloud-build-notifiers-githubissues - githubissues-${TAG_NAME}