Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Deploy Now: Build TheUnblockedHub · Add IONOS Deploy Now workflow #1

Deploy Now: Build TheUnblockedHub · Add IONOS Deploy Now workflow

Deploy Now: Build TheUnblockedHub · Add IONOS Deploy Now workflow #1

# Please do not edit this file.
# Build steps can be customized in the TheUnblockedHub-build.yaml.
# More information under https://docs.ionos.space/docs/github-actions-customization/
# version: 2022-07-21
name: "Deploy Now: Orchestration"
run-name: "Deploy Now: Build TheUnblockedHub · ${{ github.event.head_commit.message || format('Triggered by {0}', github.triggering_actor) }}"
on:
- push
- workflow_dispatch
jobs:
retrieve-project:
name: check readiness
runs-on: ubuntu-latest
outputs:
deployment-enabled: ${{ fromJson(steps.project.outputs.info).deployment-enabled }}
branch-id: ${{ fromJson(steps.project.outputs.info).branch-id }}
steps:
- name: Fetch project data
uses: ionos-deploy-now/project-action@v1
id: project
with:
api-key: ${{ secrets.IONOS_API_KEY }}
service-host: api-us.ionos.space
project-id: 99fc3176-5ac2-4217-a685-f810825e2fd8
action: retrieve-info
build:
name: build
needs: retrieve-project
if: ${{ needs.retrieve-project.outputs.deployment-enabled == 'true' }}
uses: ./.github/workflows/TheUnblockedHub-build.yaml
with:
site-url: https://IONOS_DEPLOY_NOW_SITE_URL
branch-id: ${{ needs.retrieve-project.outputs.branch-id }}
secrets: inherit
deploy:
name: trigger deployment
needs:
- retrieve-project
- build
runs-on: ubuntu-latest
steps:
- name: Dispatch deployment(s)
uses: ionos-deploy-now/project-action@v1
with:
api-key: ${{ secrets.IONOS_API_KEY }}
service-host: api-us.ionos.space
project-id: 99fc3176-5ac2-4217-a685-f810825e2fd8
branch-id: ${{ needs.retrieve-project.outputs.branch-id }}
action: dispatch-deployments