-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try pushing to GCP instead of Github
- Loading branch information
Showing
2 changed files
with
13 additions
and
29 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 |
---|---|---|
|
@@ -9,53 +9,37 @@ on: | |
push: | ||
branches: ["main"] | ||
|
||
env: | ||
# Use the free Github repository | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
id-token: write | ||
|
||
# Only one release at a time and cancel prior releases | ||
concurrency: | ||
group: release | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- name: Checkout repository | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
# I'm paying for Depot for faster ARM builds. | ||
- uses: depot/setup-action@v1 | ||
- name: Setup depot | ||
uses: depot/setup-action@v1 | ||
|
||
# Login against a Docker registry | ||
- name: Log into registry ${{ env.REGISTRY }} | ||
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Extract metadata (tags, labels) for Docker | ||
- name: Extract Docker metadata | ||
id: meta | ||
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 | ||
- name: Setup gcloud | ||
uses: google-github-actions/[email protected] | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
project_id: quic-video | ||
service_account_key: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }} | ||
|
||
- name: Configure docker for GCP | ||
run: gcloud auth configure-docker | ||
|
||
# Build and push Docker image with Depot | ||
- name: Build and push Docker image | ||
id: build-and-push | ||
uses: depot/build-push-action@v1 | ||
with: | ||
project: hppp3x0qjc | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
tags: us-central1-docker.pkg.dev/quic-video/deploy/moq-js:latest |
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