Skip to content

Commit

Permalink
use podman v4
Browse files Browse the repository at this point in the history
  • Loading branch information
feloy committed Dec 21, 2023
1 parent f063188 commit 6d1f0d0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,26 @@ jobs:
needs: [tag]
runs-on: ubuntu-latest
steps:
- name: Uninstall existing Podman and dependencies
run: |
sudo apt-get -y -q autoremove --purge podman
- name: Install latest podman
run: |
sudo apt-get update -y -qq
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.opensuse.org/repositories/devel:kubic:libcontainers:unstable/xUbuntu_$(lsb_release -rs)/Release.key \
| gpg --dearmor \
| sudo tee /etc/apt/keyrings/devel_kubic_libcontainers_unstable.gpg > /dev/null
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/devel_kubic_libcontainers_unstable.gpg]\
https://download.opensuse.org/repositories/devel:kubic:libcontainers:unstable/xUbuntu_$(lsb_release -rs)/ /" \
| sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list > /dev/null
sudo apt-get update -qq
sudo apt-get -qq -y install containernetworking-plugins podman
- run: podman system reset --force

- run: podman info

- uses: actions/checkout@v4

- uses: actions/setup-node@v3
Expand Down

0 comments on commit 6d1f0d0

Please sign in to comment.