Skip to content

Commit fce1c23

Browse files
authored
ci: revert build action to v3
1 parent d10f858 commit fce1c23

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/main.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Get artifact name
4545
id: getartifactname
46-
run: echo "artifact=$(printf '%s-%s-digests' ${{ matrix.image }} ${{ matrix.platform }} | sed 's/\//-/g;s/\./-/g')" >> "$GITHUB_OUTPUT"
46+
run: echo "artifact=$(printf '%s-digests' ${{ matrix.image }} | sed 's/\//-/g;s/\./-/g')" >> "$GITHUB_OUTPUT"
4747

4848
# Define tagging policy
4949
# - everything coming in another branch than default one is considered edge (unstable)
@@ -89,7 +89,7 @@ jobs:
8989
9090
- name: Build and push by digest
9191
id: build
92-
uses: docker/build-push-action@v5
92+
uses: docker/build-push-action@v4
9393
with:
9494
context: .
9595
platforms: ${{ matrix.platform }}
@@ -119,17 +119,13 @@ jobs:
119119
strategy:
120120
fail-fast: false
121121
matrix:
122-
platform:
123-
- linux/amd64
124-
- linux/arm64
125-
- linux/arm/v7
126122
image:
127123
- eveseat/seat
128124
- ghcr.io/eveseat/seat
129125
steps:
130126
- name: Get artifact name
131127
id: getartifactname
132-
run: echo "artifact=$(printf '%s-%s-digests' ${{ matrix.image }} ${{ matrix.platform }} | sed 's/\//-/g;s/\./-/g')" >> "$GITHUB_OUTPUT"
128+
run: echo "artifact=$(printf '%s-digests' ${{ matrix.image }} | sed 's/\//-/g;s/\./-/g')" >> "$GITHUB_OUTPUT"
133129

134130
- name: Download digests
135131
uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)