Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonfriesen/mako-deploy-action
A test action for deploying Mako apps from GitHub Actions
https://github.com/jonfriesen/mako-deploy-action
Last synced: 24 days ago
JSON representation
A test action for deploying Mako apps from GitHub Actions
- Host: GitHub
- URL: https://github.com/jonfriesen/mako-deploy-action
- Owner: jonfriesen
- Created: 2019-11-18T16:35:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-18T16:48:05.000Z (almost 5 years ago)
- Last Synced: 2024-09-18T23:45:40.925Z (about 2 months ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Action for deploying to Mako
Warning: This is a prototype for testing a specific experiecne and should not be used by anyone.### Required Environment Variables
#### Below should be secrets
- `APP_NAME` app name for deployment
- `APP_DEPLOYMENT` staging name (eg. staging) set to default for no staging
- `MAKO_AUTH` Your Mako auth token (https://mako.digitalocean.com/go/auth)### Example
```
- name: Deploy App to Mako
uses: jonfriesen/mako-deploy-action
env:
APP_NAME: nodejs-demo
APP_DEPLOYMENT: staging
MAKO_AUTH: ${{ secrets.MAKO_AUTH }}
```