Switch to a GCP registry. (#89)

Unfortunately Cloud Run doesn't support the free/public Github registry.
This commit is contained in:
kixelated 2023-10-13 10:47:10 +09:00 committed by GitHub
parent 0bdcd7adb6
commit e039fbdb56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 60 additions and 74 deletions

View File

@ -1,5 +1,3 @@
name: Test & Lint
on: on:
pull_request: pull_request:
branches: ["main"] branches: ["main"]
@ -14,16 +12,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: toolchain # Install Rust with clippy/rustfmt
uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
components: clippy, rustfmt components: clippy, rustfmt
- name: test # Make sure u guys don't write bad code
run: cargo test --verbose - run: cargo test --verbose
- run: cargo clippy --no-deps
- name: clippy - run: cargo fmt --check
run: cargo clippy
- name: fmt
run: cargo fmt --check

View File

@ -1,20 +1,11 @@
name: Release Docker Image
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on: on:
push: push:
branches: ["main"] branches: ["main"]
# Publish semver tags as releases.
tags: ["v*.*.*"]
env: env:
# Use the free Github repository REGISTRY: us-central1-docker.pkg.dev
REGISTRY: ghcr.io IMAGE: quic-video/deploy/moq-rs:latest
IMAGE_NAME: ${{ github.repository }} SERVICE: api # Restart the API service TODO and relays
jobs: jobs:
build: build:
@ -30,35 +21,36 @@ jobs:
cancel-in-progress: true cancel-in-progress: true
steps: steps:
- name: Checkout repository - uses: actions/checkout@v3
uses: actions/checkout@v3
# I'm paying for Depot for faster ARM builds. # I'm paying for Depot for faster ARM builds.
- uses: depot/setup-action@v1 - uses: depot/setup-action@v1
# Login against a Docker registry # Log in to GCP
- name: Log into registry ${{ env.REGISTRY }} - uses: google-github-actions/auth@v1
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 id: auth
with:
token_format: access_token
credentials_json: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }}
# Log into the docker registry via the GCP token
- uses: docker/login-action@v1
with: with:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY }}
username: ${{ github.actor }} username: oauth2accesstoken
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ steps.auth.outputs.access_token }}
# Extract metadata (tags, labels) for Docker
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# Build and push Docker image with Depot # Build and push Docker image with Depot
- name: Build and push Docker image - uses: depot/build-push-action@v1
id: build-and-push
uses: depot/build-push-action@v1
with: with:
project: r257ctfqm6 project: r257ctfqm6
context: . context: .
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{env.REGISTRY}}/${{env.IMAGE}}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
# Deploy to cloud run
- uses: google-github-actions/deploy-cloudrun@v1
with:
service: ${{env.SERVICE}}
image: ${{env.REGISTRY}}/${{env.IMAGE}}