Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/etereo-io/deploy-gae-action
:rocket: This action allows you to publish applications to Google App Engine
https://github.com/etereo-io/deploy-gae-action
actions gae gcp
Last synced: about 2 months ago
JSON representation
:rocket: This action allows you to publish applications to Google App Engine
- Host: GitHub
- URL: https://github.com/etereo-io/deploy-gae-action
- Owner: etereo-io
- License: mit
- Fork: true (claudiuri/deploy-gae-action)
- Created: 2020-08-19T09:34:54.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-21T16:08:43.000Z (almost 4 years ago)
- Last Synced: 2024-03-14T19:17:43.823Z (8 months ago)
- Topics: actions, gae, gcp
- Language: JavaScript
- Homepage: https://github.com/etereo-io/deploy-gae-action
- Size: 706 KB
- Stars: 5
- Watchers: 1
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Deploy app to Google App Engine :rocket:This action allows you to publish an application to Google App Engine
## :ticket: Inputs
### `service_account`
**Required** The service account private key (JSON) encoded as a base64, you can know how to create one [here](https://cloud.google.com/iam/docs/creating-managing-service-account-keys).
The service account needs to have the following permissions:
- App Engine Admin
- Cloud Build service agent### `project_id`
**Required** The project-id in service account.
### `gae_config_path`
**Optional** The path to your `app.yaml` file. Defaults to `./app.yaml`.
### `debug`
To test. Default `''`. PS: If is a truthy value it will debug instead of deploying
## :clipboard: Example usage
```yaml
- name: Deploy to Google App Engine
uses: etereo-io/deploy-gae-action
with:
service_account: ${{ secrets.SERVICE_ACCOUNT }}
project_id: ${{ secrets.PROJECT_ID }}
gae_config_path: './app.yaml'
no_cache: false
dispatch_yaml: './dispatch.yaml'```
## :memo: License
This project is under license from MIT. See the [LICENSE](/LICENSE) file for more details.