Skip to content

Commit 35a0f67

Browse files
committed
fix(ci): remove redundant mv commands in package build
1 parent 529a303 commit 35a0f67

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

.github/workflows/release.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -264,23 +264,11 @@ jobs:
264264
265265
- name: Build DEB package
266266
run: |
267-
VERSION=${{ steps.version.outputs.version }}
268-
ARCH=${{ matrix.nfpm_arch }}
269267
nfpm package --packager deb --target dist/
270-
mv dist/*.deb dist/axonops-schema-registry_${VERSION}_${ARCH}.deb
271268
272269
- name: Build RPM package
273270
run: |
274-
VERSION=${{ steps.version.outputs.version }}
275-
ARCH=${{ matrix.nfpm_arch }}
276271
nfpm package --packager rpm --target dist/
277-
# nfpm uses x86_64 for amd64 in RPM naming
278-
if [ "${ARCH}" = "amd64" ]; then
279-
RPM_ARCH="x86_64"
280-
else
281-
RPM_ARCH="aarch64"
282-
fi
283-
mv dist/*.rpm dist/axonops-schema-registry-${VERSION}-1.${RPM_ARCH}.rpm
284272
285273
- name: Upload package artifacts
286274
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)