Merge pull request #2 from yapishu/fix-breach-key-derivation #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Staging Build of azimuth-cli | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- solaris | |
jobs: | |
build_test_images: | |
environment: test | |
env: | |
GAR_LOCATION: us-central1 | |
PROJECT_ID: test-61eb624c | |
GHA_SA_KEY: ${{ secrets.GKE_SA_KEY }} # using the github actions service account key in test project | |
name: Build and Push Images for Test Env | |
runs-on: | |
- ubuntu-24.04 | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
clean: false | |
- name: Record timestamp | |
run: | | |
bin/build-package-start | |
- name: Build the azimuth-cli image | |
run: | | |
bin/build-docker azimuth-cli | |
- name: Push to GCP Artifact Registry | |
run: | | |
bin/build-docker-push azimuth-cli |