Skip to content

Commit

Permalink
Switch to podman
Browse files Browse the repository at this point in the history
Signed-off-by: Joel Winarske <[email protected]>
  • Loading branch information
jwinarske committed Apr 20, 2023
1 parent 91f62ab commit 04c3180
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/ubuntu16-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,24 @@ on:
branches:
- 'main'

env:
REGISTRY_USER: ${{ github.actor }}
REGISTRY_PASSWORD: ${{ github.token }}
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}

jobs:

ubuntu-16-dev:
runs-on: ubuntu-latest
steps:


- name: Log in to ghcr.io
uses: redhat-actions/[email protected]
with:
username: ${{ env.REGISTRY_USER }}
password: ${{ env.REGISTRY_PASSWORD }}
registry: ${{ env.IMAGE_REGISTRY }}

- name: Checkout
uses: actions/checkout@v3

Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/ubuntu18-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,24 @@ on:
branches:
- 'main'

env:
REGISTRY_USER: ${{ github.actor }}
REGISTRY_PASSWORD: ${{ github.token }}
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}

jobs:

ubuntu-18-dev:
runs-on: ubuntu-latest
steps:


- name: Log in to ghcr.io
uses: redhat-actions/[email protected]
with:
username: ${{ env.REGISTRY_USER }}
password: ${{ env.REGISTRY_PASSWORD }}
registry: ${{ env.IMAGE_REGISTRY }}

- name: Checkout
uses: actions/checkout@v3

Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/ubuntu20-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,24 @@ on:
branches:
- 'main'

env:
REGISTRY_USER: ${{ github.actor }}
REGISTRY_PASSWORD: ${{ github.token }}
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}

jobs:

ubuntu-20-dev:
runs-on: ubuntu-latest
steps:


- name: Log in to ghcr.io
uses: redhat-actions/[email protected]
with:
username: ${{ env.REGISTRY_USER }}
password: ${{ env.REGISTRY_PASSWORD }}
registry: ${{ env.IMAGE_REGISTRY }}

- name: Checkout
uses: actions/checkout@v3

Expand All @@ -28,4 +40,3 @@ jobs:
dockerfile: ubuntu-20-dev/Dockerfile
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 04c3180

Please sign in to comment.