Skip to content

feat: adds deploy workflow #1

feat: adds deploy workflow

feat: adds deploy workflow #1

Workflow file for this run

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:

Check failure on line 13 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

secret name `github_token` within `workflow_call` can not be used since it would collide with system reserved name
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 }}