Skip to content

Commit

Permalink
chore: GHA - another attempt to trigger Teamcity builds correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-polk committed Nov 20, 2024
1 parent e4ec0d8 commit bd0aa63
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 43 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
jobs:
build-test-release:
runs-on: ubuntu-latest
outputs:
new_release_published: ${{ steps.semantic_release.outputs.new_release_published }}

steps:
- name: Checkout code
Expand Down Expand Up @@ -46,7 +48,11 @@ jobs:

- name: Publish package
id: semantic_release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

- name: Output
run: |
echo "New Release Published: ${{ steps.semantic_release.outputs.new_release_published }}"
90 changes: 48 additions & 42 deletions .github/workflows/trigger-teamcity-builds.yml
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"}}'

0 comments on commit bd0aa63

Please sign in to comment.