Skip to content

Commit 24613d3

Browse files
authored
ci: remove redundant specification of docker-image
The script now pulls the right tag depending upon the architecture
1 parent 2dcdddf commit 24613d3

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,9 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
include:
19-
- ARCH: 'x86_64'
20-
docker-image: 'appimagebuild'
21-
- ARCH: 'i386'
22-
docker-image: 'appimagebuild-i386'
23-
- ARCH: 'armhf'
24-
docker-image: 'appimagebuild-armhf-cross'
25-
- ARCH: 'aarch64'
26-
docker-image: 'appimagebuild-aarch64-cross'
18+
ARCH: ['x86_64', 'i386', 'armhf', 'aarch64']
2719

2820
env:
29-
DOCKER_IMAGE: quay.io/appimage/${{ matrix.docker-image }}
3021
ARCH: ${{ matrix.ARCH }}
3122

3223
steps:

0 commit comments

Comments
 (0)