-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ali Ariff <ali.ariff12@gmail.com>
- Loading branch information
Showing
3 changed files
with
63 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Release | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
jobs: | ||
buildx: | ||
name: Build & Push Multi Arch Images | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Configure gcloud | ||
uses: linkerd/linkerd2-action-gcloud@v1.0.2 | ||
with: | ||
cloud_sdk_service_account_key: ${{ secrets.CLOUD_SDK_SERVICE_ACCOUNT_KEY }} | ||
gcp_project: ${{ secrets.GCP_PROJECT }} | ||
gcp_zone: ${{ secrets.GCP_ZONE }} | ||
- name: Set up Docker Buildx | ||
uses: crazy-max/ghaction-docker-buildx@v3 | ||
- name: Docker Buildx (build) | ||
run: make images | ||
- name: Docker Buildx (push) | ||
run: make push | ||
- name: Docker Check Manifest | ||
run: make inspect-manifest |
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
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