Skip to content

Commit 237a29d

Browse files
sjmonsonmarkurtz
authored andcommitted
Add container build jobs to all build workflows (#190)
Add container build jobs alongside the existing wheel jobs. Tag containers based on which workflow was triggered. Tags: * PR: `pr-{{ github.event.number }}` ~`{{ github.sha }}`~ * Nightly: `nightly` ~`{{ github.sha }}`~ * Release candidate: `latest` ~`{{ github.sha }}`~ * Release: `latest` `stable` ~`{{ github.sha }}`~ Edit: To save space, don't use unique tags. - - - * Tag RC and releases with their versions. (e.g. 0.3.0-rc, 0.3.0) * Reuse wheel builds in container --------- Co-authored-by: Mark Kurtz <[email protected]> Signed-off-by: dalthecow <[email protected]>
1 parent 457a037 commit 237a29d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ jobs:
244244
user_name: ${{ github.actor }}
245245
user_email: ${{ github.actor }}@users.noreply.github.com
246246
publish_branch: gh-pages
247-
247+
248248
build-and-push-container:
249249
needs: [unit-tests, integration-tests, e2e-tests]
250250
runs-on: ubuntu-latest

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jobs:
288288
user_name: ${{ github.actor }}
289289
user_email: ${{ github.actor }}@users.noreply.github.com
290290
publish_branch: gh-pages
291-
291+
292292
build-and-push-container:
293293
needs: [unit-tests, integration-tests, e2e-tests]
294294
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ jobs:
287287
user_name: ${{ github.actor }}
288288
user_email: ${{ github.actor }}@users.noreply.github.com
289289
publish_branch: gh-pages
290-
290+
291291
build-and-push-container:
292292
needs: [unit-tests, integration-tests, e2e-tests]
293293
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)