Skip to content

Commit

Permalink
Merge pull request #232 from tloncorp/hm/deploy-simultaneously
Browse files Browse the repository at this point in the history
ops: deploy kernel with external
  • Loading branch information
arthyn authored Oct 23, 2023
2 parents b971991 + 1e17e04 commit 7211a66
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/deploy-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
type: string
required: true
description: Enter the tag to deploy
kernel:
type: boolean
required: false
default: true
description: Also deploy to kernel integration moon
jobs:
deploy:
runs-on: ubuntu-latest
Expand All @@ -25,3 +30,11 @@ jobs:
SSH_SEC_KEY: ${{ secrets.GCP_SSH_SEC_KEY }}
SSH_PUB_KEY: ${{ secrets.GCP_SSH_PUB_KEY }}
URBIT_REPO_TAG: ${{ vars.URBIT_REPO_TAG }}
- id: deploy-kernel
name: Deploy Kernel Moon
if: ${{ github.event.inputs.kernel == 'true' }}
run: ./.github/helpers/deploy.sh tloncorp/landscape landscape bosdev-dozzod-marnus us-central1-b mainnet-tlon-other-2d ${{ github.event.inputs.tag }}
env:
SSH_SEC_KEY: ${{ secrets.GCP_SSH_SEC_KEY }}
SSH_PUB_KEY: ${{ secrets.GCP_SSH_PUB_KEY }}
URBIT_REPO_TAG: ${{ vars.URBIT_REPO_TAG }}

0 comments on commit 7211a66

Please sign in to comment.