Manual Deploy to Workshop #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-aim-image: | ||
needs: build-unstable | ||
name: Deploy to aim-workshop | ||
environment: aim | ||
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1 | ||
Check failure on line 24 in .github/workflows/manual-deploy-workshop.yaml GitHub Actions / Manual Deploy to WorkshopInvalid workflow file
|
||
with: | ||
image: ${{ needs.build-unstable.outputs.image }} | ||
file: environments/alma-events/workshop/web-image.txt | ||
CONFIG_REPO_RW_APP_ID: ${{ vars.CONFIG_REPO_RW_APP_ID }} | ||
CONFIG_REPO_RW_INSTALL_ID: ${{ vars.CONFIG_REPO_RW_INSTALL_ID }} | ||
CONFIG_REPO_FULL_NAME: ${{ vars.CONFIG_REPO_FULL_NAME }} | ||
secrets: inherit | ||
deploy-search-image: | ||
needs: build-unstable | ||
name: Deploy to search-workshop | ||
environment: search | ||
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1 | ||
with: | ||
image: ${{ needs.build-unstable.outputs.image }} | ||
file: environments/alma-events/workshop/web-image.txt | ||
CONFIG_REPO_RW_APP_ID: ${{ vars.CONFIG_REPO_RW_APP_ID }} | ||
CONFIG_REPO_RW_INSTALL_ID: ${{ vars.CONFIG_REPO_RW_INSTALL_ID }} | ||
CONFIG_REPO_FULL_NAME: ${{ vars.CONFIG_REPO_FULL_NAME }} | ||
secrets: inherit |