Skip to content

Commit

Permalink
Fix apt issues [DI-358] [5.5.z] (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackPGreen authored Dec 1, 2024
1 parent 27986a3 commit 0642fcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-deb-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
| gpg --dearmor \
| sudo tee /usr/share/keyrings/hazelcast-archive-keyring.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/hazelcast-archive-keyring.gpg] ${DEBIAN_REPO_BASE_URL} ${PACKAGE_REPO} main" | sudo tee -a /etc/apt/sources.list
sudo apt update && sudo apt install ${{ env.HZ_DISTRIBUTION}}=${HZ_VERSION}
sudo apt-get update && sudo apt-get install -y ${{ env.HZ_DISTRIBUTION }}=${HZ_VERSION}
HAZELCAST_CONFIG="$(pwd)/config/integration-test-hazelcast.yaml" hz-start > hz.log 2>&1 &
- name: Check Hazelcast health
Expand All @@ -92,7 +92,7 @@ jobs:
- name: Uninstall Hazelcast from deb
run: |
source ./common.sh
sudo apt remove ${{ env.HZ_DISTRIBUTION}}
sudo apt-get remove -y ${{ env.HZ_DISTRIBUTION}}
- name: Remove deb package from test repo
if: ${{ env.USE_TEST_REPO == 'true' && (success() || failure()) }}
Expand Down

0 comments on commit 0642fcf

Please sign in to comment.