Skip to content

Manual Deploy to Workshop #1

Manual Deploy to Workshop

Manual Deploy to Workshop #1

name: Manual Deploy to Workshop
on:
workflow_dispatch:
inputs:
tag:
description: tag
required: true
jobs:
build-unstable:
uses: mlibrary/platform-engineering-workflows/.github/workflows/build-unstable.yml@v1
with:
image_name: ${{ vars.IMAGE_NAME }}
tag: ${{ github.event.inputs.tag }}
dockerfile: Dockerfile
secrets: inherit
deploy-workshop:
needs: build-unstable
name: Deploy to workshop
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
environment: aim
image: ${{ needs.build-unstable.outputs.image }}
file: environments/account/workshop/checkout-history-web-image.txt
secrets: inherit