mirror of
https://github.com/tloncorp/landscape.git
synced 2024-12-11 09:42:51 +03:00
27 lines
851 B
YAML
27 lines
851 B
YAML
name: Deploy Landscape (canary)
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
type: string
|
|
required: false
|
|
description: Enter the tag to deploy
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
name: "Release to ~binnec-dozzod-marzod (canary)"
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- id: 'auth'
|
|
uses: 'google-github-actions/auth@v1'
|
|
with:
|
|
credentials_json: '${{ secrets.JANEWAY_SERVICE_KEY }}'
|
|
- name: 'Set up Cloud SDK'
|
|
uses: 'google-github-actions/setup-gcloud@v1'
|
|
- id: deploy
|
|
name: Deploy
|
|
run:
|
|
./.github/helpers/deploy.sh tloncorp/landscape garden binnec-dozzod-marzod us-west1-b ${{ github.event.inputs.tag }}
|
|
env:
|
|
SSH_SEC_KEY: ${{ secrets.JANEWAY_SSH_SEC_KEY }}
|
|
SSH_PUB_KEY: ${{ secrets.JANEWAY_SSH_PUB_KEY }} |