Skip to content

Commit

Permalink
ops: add missing targets
Browse files Browse the repository at this point in the history
  • Loading branch information
arthyn committed Jan 4, 2023
1 parent 597a584 commit 1d00973
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy-external.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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
- uses: ./.github/actions/release
with:
app: 'landscape'
ship: 'external'
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 }}
22 changes: 22 additions & 0 deletions .github/workflows/deploy-live.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deploy Landscape (livenet)
on:
workflow_dispatch:
inputs:
tag:
type: string
required: true
description: Enter the tag to deploy
jobs:
deploy:
runs-on: ubuntu-latest
name: "Release to ~mister-dister-dozzod-dozzod (livenet)"
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/release
with:
app: 'landscape'
ship: 'mister'
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 }}

0 comments on commit 1d00973

Please sign in to comment.