Skip to content

Commit

Permalink
Try pushing to GCP instead of Github
Browse files Browse the repository at this point in the history
  • Loading branch information
kixelated committed Oct 3, 2023
1 parent 10fb393 commit 0ac4c51
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 29 deletions.
38 changes: 11 additions & 27 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ COPY --from=prod-deps /app/node_modules /app/node_modules
COPY --from=build /app/web/dist /app/web/dist

ENV HOST=0.0.0.0
ENV PORT=443
EXPOSE 443
ENV PORT=4321
EXPOSE 4321

CMD [ "node", "./web/dist/server/entry.mjs" ]

0 comments on commit 0ac4c51

Please sign in to comment.