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,29 +1,23 @@
name: Test & Lint
on: on:
pull_request: pull_request:
branches: ["main"] branches: ["main"]
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
jobs: jobs:
check: check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
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,64 +1,56 @@
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:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: read contents: read
packages: write packages: write
id-token: write id-token: write
# Only one release at a time and cancel prior releases # Only one release at a time and cancel prior releases
concurrency: concurrency:
group: release group: release
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: with:
registry: ${{ env.REGISTRY }} token_format: access_token
username: ${{ github.actor }} credentials_json: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }}
password: ${{ secrets.GITHUB_TOKEN }}
# Extract metadata (tags, labels) for Docker # Log into the docker registry via the GCP token
- name: Extract Docker metadata - uses: docker/login-action@v1
id: meta with:
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 registry: ${{ env.REGISTRY }}
with: username: oauth2accesstoken
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} password: ${{ steps.auth.outputs.access_token }}
# 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 with:
uses: depot/build-push-action@v1 project: r257ctfqm6
with: context: .
project: r257ctfqm6 push: true
context: . tags: ${{env.REGISTRY}}/${{env.IMAGE}}
push: true platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} # Deploy to cloud run
platforms: linux/amd64,linux/arm64 - uses: google-github-actions/deploy-cloudrun@v1
with:
service: ${{env.SERVICE}}
image: ${{env.REGISTRY}}/${{env.IMAGE}}