Skip to content

Commit 989aa91

Browse files
committed
Push to test
1 parent e8b1c04 commit 989aa91

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/debian.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,19 +106,19 @@ jobs:
106106
outputs: type=image,name=${{ env.CONTAINER_IMAGE }},push-by-digest=true,name-canonical=true,push=true
107107
platforms: ${{ matrix.architecture.platform }}
108108
provenance: mode=max
109-
push: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
109+
push: true
110110
sbom: true
111111
labels: ${{ steps.meta.outputs.labels }}
112112
target: ${{ matrix.os.compiler_name }}
113113
- name: Export digest
114-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
114+
if: true
115115
shell: bash
116116
run: |
117117
mkdir -p /tmp/digests
118118
DIGEST="${{ steps.build.outputs.digest }}"
119119
touch "/tmp/digests/${DIGEST#sha256:}"
120120
- name: Upload digest
121-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
121+
if: true
122122
uses: actions/upload-artifact@v4
123123
with:
124124
name: digests-${{ matrix.os.release }}-${{ matrix.os.compiler_name }}-${{ matrix.os.compiler_version }}-${{ env.PLATFORM_PAIR }}
@@ -127,7 +127,7 @@ jobs:
127127
retention-days: 1
128128

129129
merge:
130-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
130+
if: true
131131
strategy:
132132
matrix:
133133
os:

.github/workflows/rhel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,19 @@ jobs:
9393
outputs: type=image,name=${{ env.CONTAINER_IMAGE }},push-by-digest=true,name-canonical=true,push=true
9494
platforms: ${{ matrix.architecture.platform }}
9595
provenance: mode=max
96-
push: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
96+
push: true
9797
sbom: true
9898
labels: ${{ steps.meta.outputs.labels }}
9999
target: ${{ matrix.os.compiler_name }}
100100
- name: Export digest
101-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
101+
if: true
102102
shell: bash
103103
run: |
104104
mkdir -p /tmp/digests
105105
DIGEST="${{ steps.build.outputs.digest }}"
106106
touch "/tmp/digests/${DIGEST#sha256:}"
107107
- name: Upload digest
108-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
108+
if: true
109109
uses: actions/upload-artifact@v4
110110
with:
111111
name: digests-${{ matrix.os.release }}-${{ matrix.os.compiler_name }}-${{ matrix.os.compiler_version }}-${{ env.PLATFORM_PAIR }}
@@ -114,7 +114,7 @@ jobs:
114114
retention-days: 1
115115

116116
merge:
117-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
117+
if: true
118118
strategy:
119119
matrix:
120120
os:

.github/workflows/ubuntu.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,19 +104,19 @@ jobs:
104104
outputs: type=image,name=${{ env.CONTAINER_IMAGE }},push-by-digest=true,name-canonical=true,push=true
105105
platforms: ${{ matrix.architecture.platform }}
106106
provenance: mode=max
107-
push: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
107+
push: true
108108
sbom: true
109109
labels: ${{ steps.meta.outputs.labels }}
110110
target: ${{ matrix.os.compiler_name }}
111111
- name: Export digest
112-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
112+
if: true
113113
shell: bash
114114
run: |
115115
mkdir -p /tmp/digests
116116
DIGEST="${{ steps.build.outputs.digest }}"
117117
touch "/tmp/digests/${DIGEST#sha256:}"
118118
- name: Upload digest
119-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
119+
if: true
120120
uses: actions/upload-artifact@v4
121121
with:
122122
name: digests-${{ matrix.os.release }}-${{ matrix.os.compiler_name }}-${{ matrix.os.compiler_version }}-${{ env.PLATFORM_PAIR }}
@@ -125,7 +125,7 @@ jobs:
125125
retention-days: 1
126126

127127
merge:
128-
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
128+
if: true
129129
strategy:
130130
matrix:
131131
os:

0 commit comments

Comments
 (0)