Broke up the derive_rs_from_media function into smaller components #73
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 Server to Cloud Run from Source | |
on: [push] | |
jobs: | |
deploy: | |
name: Deploy python-server | |
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/python-server' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-hub/gcloud@master | |
env: | |
PROJECT_ID: rails-server-sprint1 | |
APPLICATION_CREDENTIALS: ${{secrets.GCP_SA_KEY}} | |
with: | |
args: builds submit --config python-server/cloudbuild.yaml python-server |