Skip to content

Commit

Permalink
fix upload debs to artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Sep 24, 2024
1 parent c9c27b9 commit 2f01d76
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ jobs:
echo "de_DE.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen
- name: build
run: dpkg-buildpackage --unsigned-source --unsigned-changes
run: |
dpkg-buildpackage --unsigned-source --unsigned-changes
mv ../*.*deb .
- name: upload deb packages to artifacts
uses: actions/upload-artifact@v4
with:
Expand All @@ -178,7 +180,7 @@ jobs:
- name: deploy deb packages
run: |
echo "${{ secrets.MYCI_REPO_SSH_KEY }}" > repo_key_rsa && chmod 600 repo_key_rsa
myci-deploy-apt-ssh.sh --key repo_key_rsa --server gagis.hopto.org --repo cppfw/${{ matrix.os }} --distro ${{ matrix.codename }} --component main ../lib${PACKAGE_NAME}*_${PACKAGE_VERSION}_*.deb
myci-deploy-apt-ssh.sh --key repo_key_rsa --server gagis.hopto.org --repo cppfw/${{ matrix.os }} --distro ${{ matrix.codename }} --component main lib${PACKAGE_NAME}*_${PACKAGE_VERSION}_*.deb
if: startsWith(github.ref, 'refs/tags/')
##### archlinux #####
# archlinux:
Expand Down

0 comments on commit 2f01d76

Please sign in to comment.