-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: GHA - another attempt to trigger Teamcity builds correctly
- Loading branch information
1 parent
e4ec0d8
commit bd0aa63
Showing
2 changed files
with
55 additions
and
43 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,53 @@ | ||
name: Trigger TeamCity Builds | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Build-Test-Release"] | ||
types: | ||
- completed | ||
workflow_dispatch: # Allows manual triggering | ||
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' && (startsWith(github.event.workflow_run.head_commit.message, 'fix:') || startsWith(github.event.workflow_run.head_commit.message, 'feat:'))) }} | ||
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"}}' | ||
trigger-teamcity: | ||
runs-on: ubuntu-latest | ||
# Run if manually triggered or if a new release was published | ||
if: ${{ github.event_name == 'workflow_dispatch' || (github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.outputs.new_release_published == 'true') }} | ||
steps: | ||
- name: Workflow Inputs | ||
run: | | ||
echo "Event name: ${{ github.event_name }}" | ||
echo "Workflow conclusion: ${{ github.event.workflow_run.conclusion }}" | ||
echo "New release published: ${{ github.event.workflow_run.outputs.new_release_published }}" | ||
- 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"}}' |