Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adzz/deploy_to_gae_action
A github action which runs a given gcloud command.
https://github.com/adzz/deploy_to_gae_action
continuous-delivery continuous-integration docker gae gcloud gcloud-sdk gcp github-actions google-app-engine google-cloud-platform
Last synced: about 7 hours ago
JSON representation
A github action which runs a given gcloud command.
- Host: GitHub
- URL: https://github.com/adzz/deploy_to_gae_action
- Owner: Adzz
- Created: 2020-03-19T18:44:00.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-23T21:59:01.000Z (almost 5 years ago)
- Last Synced: 2025-01-13T13:53:12.877Z (22 days ago)
- Topics: continuous-delivery, continuous-integration, docker, gae, gcloud, gcloud-sdk, gcp, github-actions, google-app-engine, google-cloud-platform
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Run gcloud commands
Allows you to run `gcloud` commands in github actions. It will authorize you via a service account and run the given command on the given project.
This is useful for deploying for example:
```yaml
name: Checkout! Deploy! Rejoice!
on:
push:
branches:
- masterjobs:
deploy_to_gae:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: deploy
uses: Adzz/[email protected]
with:
credentials: ${{ secrets.SERVICE_ACCOUNT }}
project: ${{ secrets.GAE_PROJECT }}
command: app deploy --quiet --promote
```