Skip to content

Commit

Permalink
Merge pull request #30 from magicsword-io/beta
Browse files Browse the repository at this point in the history
adds beta deploy
  • Loading branch information
M3NIX authored Dec 1, 2023
2 parents 24575be + 7c17473 commit 728534f
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/beta-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Deploy

on:
push:
branches:
- beta

env:
SERVICE_NAME: beta-sigconverter
IMAGE_NAME: beta.sigconverter.io

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Google Cloud SDK
uses: google-github-actions/[email protected]
with:
project_id: ${{ secrets.PROJECT_ID }}
service_account_key: ${{ secrets.GCLOUD_AUTH }}

- name: Configure Docker
run: gcloud auth configure-docker

- name: Build Docker image
run: docker build -t ${{ env.IMAGE_NAME }} .

- name: Push Docker image to Google Container Registry
run: gcloud builds submit --tag gcr.io/${{ secrets.PROJECT_ID }}/${{ env.IMAGE_NAME }}

- name: Deploy to Google Cloud Run
run: gcloud run deploy ${{ env.SERVICE_NAME }} --image gcr.io/${{ secrets.PROJECT_ID }}/${{ env.IMAGE_NAME }} --platform managed --region us-central1

0 comments on commit 728534f

Please sign in to comment.