Skip to content

Commit

Permalink
feat: adds deploy workflow (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman authored Oct 14, 2023
1 parent 78abc1f commit 94c2e4d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
workflow_call:
inputs:
images:
description: A space separated list of images to deploy.
required: true
type: string
tag:
description: The tag to use for deploying images.
required: true
type: string
secrets:
github_token:
description: A Github token with access to the deployment repository.
required: true

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy
uses: input-output-hk/catalyst-ci/actions/deploy@master
with:
deployment_repo: input-output-hk/catalyst-world
images: ${{ inputs.images }}
environment: dev
tag: ${{ inputs.tag }}
token: ${{ secrets.github_token }}

0 comments on commit 94c2e4d

Please sign in to comment.