Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/actions/stage2-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ runs:
run: |
unset CI
- name: Login to GHCR
if: inputs.BINARY == 'docker'
uses: docker/login-action@v3
with:
registry: ghcr.io
Expand All @@ -70,7 +71,7 @@ runs:
- if: ${{ inputs.BINARY == 'podman' }}
run: |-
echo "Setting up podman"
${{inputs.SUDO}} apt-get purge docker-engine docker docker.io docker-ce docker-ce-cli ; ${{inputs.SUDO}} rm -rf /usr/bin/docker
${{inputs.SUDO}} apt-get purge docker-engine docker docker.io docker-ce docker-ce-cli ; ${{inputs.SUDO}} rm -f /usr/bin/docker
${{inputs.SUDO}} apt-get update && ${{inputs.SUDO}} apt-get install -y podman && ${{inputs.SUDO}} rm -f /etc/containers/registries.conf
podman version && podman info && podman info --debug
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-podman-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- '.github/CODEOWNERS'
- 'LICENSE'
pull_request:
branches: [ main ]
branches: [ main, get-ci-working ]
Comment thread
gilescope marked this conversation as resolved.
Outdated

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
Loading