-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jörg Zimmermann
committed
Jan 2, 2025
1 parent
e4fe333
commit 2655e57
Showing
1 changed file
with
4 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,12 @@ on: | |
|
||
jobs: | ||
containerbuild: | ||
timeout-minutes: 15 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [ "3.10", "3.11", "3.12" ] | ||
platform: [ "linux/amd64", "linux/arm64" ] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -71,7 +73,7 @@ jobs: | |
LOGPREP_VERSION=${{ inputs.build-version }} | ||
PYTHON_VERSION=${{ matrix.python-version }} | ||
tags: ${{ steps.image-tag.outputs.tags }} | ||
platforms: linux/amd64,linux/arm64 | ||
platforms: ${{ matrix.platform }} | ||
|
||
- name: Extract image ID from sha256 | ||
id: imageid | ||
|
@@ -97,7 +99,7 @@ jobs: | |
LOGPREP_VERSION=${{ inputs.build-version }} | ||
PYTHON_VERSION=${{ matrix.python-version }} | ||
tags: ${{ steps.image-tag.outputs.tags }} | ||
platforms: linux/amd64,linux/arm64 | ||
platforms: ${{ matrix.platform }} | ||
|
||
- name: Install Cosign | ||
uses: sigstore/[email protected] | ||
|