landscape/.github/workflows/deploy-external.yml
2023-01-31 12:45:43 -06:00

23 lines
709 B
YAML

name: Deploy Landscape (external)
on:
workflow_dispatch:
inputs:
tag:
type: string
required: true
description: Enter the tag to deploy
jobs:
deploy:
runs-on: ubuntu-latest
name: "Release to ~doznec-dozzod-marzod (external)"
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'
- name: Deploy
run:
./.github/helpers/deploy.sh tloncorp/landscape landscape doznec-dozzod-marzod us-west1-b ${{ github.event.inputs.tag }}