Skip to content

Commit 067c5b4

Browse files
committed
Fix architecture naming
1 parent f143d19 commit 067c5b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ jobs:
9595
run: |
9696
sudo apt-get install devscripts build-essential debhelper-compat
9797
98-
- name: Create folder structure for amd64 distribution
98+
- name: Create folder structure for ${{ matrix.architecture }} distribution
9999
run: |
100100
mkdir gitmastery-${VERSION}-${ARCHITECTURE}
101101
102102
- name: Download ${{ matrix.architecture }} binaries from artifacts
103103
uses: actions/download-artifact@v4
104104
with:
105-
name: gitmastery-${{ env.VERSION }}-linux-${ARCHITECTURE}
106-
path: gitmastery-${{ env.VERSION }}-${ARCHITECTURE}/
105+
name: gitmastery-${{ env.VERSION }}-linux-${{ matrix.architecture }}
106+
path: gitmastery-${{ env.VERSION }}-${{ matrix.architecture }}/
107107

108108
- name: Create upstream tarball .orig.tar.gz
109109
run: |
@@ -165,7 +165,7 @@ jobs:
165165
cat debian/rules
166166
167167
# Build the package
168-
dpkg-buildpackage -us -uc -a amd64
168+
dpkg-buildpackage -us -uc -a ${ARCHITECTURE}
169169
170170
- name: Logging
171171
run: |

0 commit comments

Comments
 (0)