Skip to content

Commit

Permalink
HACK
Browse files Browse the repository at this point in the history
  • Loading branch information
dceara committed Nov 14, 2023
1 parent b925da1 commit eeafd2a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/containers-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Containers
on:
# Be able to run the job manually when needed
workflow_dispatch:

jobs:
container:
runs-on: ubuntu-22.04
steps:
- name: Foo
run: |
podman pull ghcr.io/ovn-org/ovn-tests:ubuntu
podman tag ghcr.io/ovn-org/ovn-tests:ubuntu ghcr.io/dceara/ovn-tests:pin-versions-in-ci-ubuntu
- name: Push to ghcr.io
id: push-to-registry
uses: redhat-actions/push-to-registry@v2
with:
image: ovn-tests
tags: pin-versions-in-ci-ubuntu
registry: ghcr.io/dceara
username: dceara
password: ${{ secrets.GITHUB_TOKEN }}

- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-registry.outputs.registry-paths }}"

0 comments on commit eeafd2a

Please sign in to comment.