Skip to content

Trigger TeamCity Builds #15

Trigger TeamCity Builds

Trigger TeamCity Builds #15

name: Trigger TeamCity Builds
on:
workflow_run:
workflows: ["Build-Test-Release"]
types:
- completed
workflow_dispatch: # Allows manual triggering
jobs:
trigger-teamcity:
runs-on: ubuntu-latest
# Either a manual run or the Build-Test-Release workflow has completed successfully and a new release was published to npm
if: ${{ github.event_name == 'workflow_dispatch' || (github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.outputs.new_release_published == 'true') }}
steps:
- name: Trigger TeamCity Build for alpha.bloomlibrary.org
uses: fjogeleit/http-request-action@v1
with:
url: '${{ secrets.TEAMCITY_URL }}/app/rest/buildQueue'
method: 'POST'
contentType: 'application/json'
customHeaders: '{"Authorization": "Bearer ${{ secrets.TEAMCITY_TOKEN_RUN_BUILD }}"}'
data: '{"buildType": {"id": "Bloom_BloomLibraryOrg_BloomLibraryAlphaAlphaBloomlibraryOrgContinuous"}}'
- name: Trigger TeamCity Build for Bloom Reader Alpha
uses: fjogeleit/http-request-action@v1
with:
url: '${{ secrets.TEAMCITY_URL }}/app/rest/buildQueue'
method: 'POST'
contentType: 'application/json'
customHeaders: '{"Authorization": "Bearer ${{ secrets.TEAMCITY_TOKEN_RUN_BUILD }}"}'
data: '{"buildType": {"id": "Bloom_BloomReader_BloomReaderMasterAlphaContinuousPublish"}}'
- name: Trigger TeamCity Build for Bloom Desktop Alpha
uses: fjogeleit/http-request-action@v1
with:
url: '${{ secrets.TEAMCITY_URL }}/app/rest/buildQueue'
method: 'POST'
contentType: 'application/json'
customHeaders: '{"Authorization": "Bearer ${{ secrets.TEAMCITY_TOKEN_RUN_BUILD }}"}'
data: '{"buildType": {"id": "bt222"}}'
- name: Trigger TeamCity Build for dev-alpha.bloomlibrary.org
uses: fjogeleit/http-request-action@v1
with:
url: '${{ secrets.TEAMCITY_URL }}/app/rest/buildQueue'
method: 'POST'
contentType: 'application/json'
customHeaders: '{"Authorization": "Bearer ${{ secrets.TEAMCITY_TOKEN_RUN_BUILD }}"}'
data: '{"buildType": {"id": "Bloom_BloomLibraryOrg_BloomLibrary2masterDevAlphaBloomlibraryOrgContinuous"}}'