Skip to content

Manual Deploy to Workshop #11

Manual Deploy to Workshop

Manual Deploy to Workshop #11

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-digifeeds:
needs: build-unstable
name: Deploy to workshop - digifeeds
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
image: ${{ needs.build-unstable.outputs.image }}
file: environments/digifeeds/workshop/app-image.txt
secrets: inherit
deploy-workshop-hathifiles:
needs: build-unstable
name: Deploy to workshop - hathifiles
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
image: ${{ needs.build-unstable.outputs.image }}
file: environments/hathiifiles/workshop/cli-image.txt
secrets: inherit