Skip to content

update

update #34

Workflow file for this run

name: Deploy
on:
push:
branches:
- gcp
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v4'
- uses: 'google-github-actions/auth@v1'
with:
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS_JSON }}'
- id: 'deploy'
uses: 'google-github-actions/deploy-cloudrun@v1'
with:
service: 'crew'
region: 'europe-west3'
- name: 'Use output'
run: 'curl "${{ steps.deploy.outputs.url }}"'