From 459503458d929809723ea972e3d2e534195d5e2f Mon Sep 17 00:00:00 2001 From: Patrick Poetz Date: Thu, 17 Oct 2024 16:40:41 +0200 Subject: [PATCH 1/2] test: verify download center fix --- .github/workflows/NIGHTLY.yml | 5 +++-- .github/workflows/PUBLISH_RELEASE.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/NIGHTLY.yml b/.github/workflows/NIGHTLY.yml index 63e8a5813..c89968a2a 100644 --- a/.github/workflows/NIGHTLY.yml +++ b/.github/workflows/NIGHTLY.yml @@ -2,12 +2,13 @@ name: NIGHTLY on: schedule: - cron: '0 18 * * *' + workflow_dispatch: jobs: Build_nightly: strategy: matrix: include: - - os: ubuntu-latest + - os: ubuntu-24.04 files: - 'dist/camunda-modeler-nightly-linux-x64.tar.gz' - os: macos-latest @@ -95,7 +96,7 @@ jobs: run: npm run build -- --win - name: Upload artifact to Camunda Download Center - uses: camunda/infra-global-github-actions/download-center-upload@adc932a586d745b8a147a7f52117e683d5c59b54 + uses: camunda/infra-global-github-actions/download-center-upload@gsutil-replacement with: gcp_credentials: ${{ steps.secrets.outputs.GCP_CREDENTIALS_NAME }} env: 'prod' diff --git a/.github/workflows/PUBLISH_RELEASE.yml b/.github/workflows/PUBLISH_RELEASE.yml index 6e57ade59..ca778181f 100644 --- a/.github/workflows/PUBLISH_RELEASE.yml +++ b/.github/workflows/PUBLISH_RELEASE.yml @@ -30,7 +30,7 @@ jobs: secrets: | secret/data/common/jenkins/downloads-camunda-cloud_google_sa_key DOWNLOAD_CENTER_GCLOUD_KEY_BYTES | GCP_CREDENTIALS_NAME; - name: Upload artifacts to Camunda Download Center - uses: camunda/infra-global-github-actions/download-center-upload@adc932a586d745b8a147a7f52117e683d5c59b54 + uses: camunda/infra-global-github-actions/download-center-upload@gsutil-replacement with: gcp_credentials: ${{ steps.secrets.outputs.GCP_CREDENTIALS_NAME }} env: 'prod' From 0216b7035394e6d09269859f1e750d43206913ee Mon Sep 17 00:00:00 2001 From: Patrick Poetz Date: Thu, 17 Oct 2024 16:52:29 +0200 Subject: [PATCH 2/2] ci: run nightly on pull request push --- .github/workflows/NIGHTLY.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/NIGHTLY.yml b/.github/workflows/NIGHTLY.yml index c89968a2a..9faf5e3db 100644 --- a/.github/workflows/NIGHTLY.yml +++ b/.github/workflows/NIGHTLY.yml @@ -3,6 +3,7 @@ on: schedule: - cron: '0 18 * * *' workflow_dispatch: + pull_request: jobs: Build_nightly: strategy: