Merge pull request #58 from magicsword-io/readme-without-docker #28
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
name: Deploy | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * 0" | |
env: | |
SERVICE_NAME: sigconverter | |
IMAGE_NAME: 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 |