Skip to content

Commit

Permalink
chore: more GHA tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-polk committed Nov 12, 2024
1 parent 00d4255 commit 2a3afd7
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 20 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

- name: Set output if new release published to npm
if: success() && steps.semantic_release.outputs.new_release_published == 'true'
run: echo "::set-output name=new_release_published::true"
# This doesn't work
# - name: Set output if new release published to npm
# if: success() && steps.semantic_release.outputs.new_release_published == 'true'
# run: echo "::set-output name=new_release_published::true"
52 changes: 35 additions & 17 deletions .github/workflows/trigger-teamcity-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,39 @@ 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') }}
#if: ${{ github.event_name == 'workflow_dispatch' || (github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.outputs.new_release_published == 'true') }}
# ... except we haven't figured out the "and a new release was published to npm" part yet...
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
steps:
- 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 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 2a3afd7

Please sign in to comment.