landscape/.github/workflows/deploy-canary.yml
2023-01-04 12:17:54 -06:00

22 lines
637 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
- uses: ./.github/actions/release
with:
app: 'landscape'
ship: 'canary'
credentials: ${{ secrets.JANEWAY_SERVICE_KEY }}
ssh-sec-key: ${{ secrets.JANEWAY_SSH_SEC_KEY }}
ssh-pub-key: ${{ secrets.JANEWAY_SSH_PUB_KEY }}
ref: ${{ github.event.inputs.tag }}