We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0015ed0 commit ccbec5eCopy full SHA for ccbec5e
1 file changed
.github/workflows/conformance-action.yml
@@ -15,13 +15,15 @@ jobs:
15
- name: checkout source code
16
uses: actions/checkout@v4
17
- name: Start a test registry
18
+ id: setup
19
run: |
20
set -x
21
make registry-ci
22
+ echo "port=$(docker port oci-conformance-olareg 5000| head -1 | cut -f2 -d:)" >>$GITHUB_OUTPUT
23
- name: Run OCI distribution-spec conformance
24
env:
- OCI_REGISTRY: "localhost:5000"
- OCI_TLS: "disable"
25
+ OCI_REGISTRY: "localhost:${{ steps.setup.outputs.port }}"
26
+ OCI_TLS: "disabled"
27
OCI_REPO1: "myorg/myrepo"
28
OCI_REPO2: "myorg/myrepo2"
29
OCI_RESULTS_DIR: "."
0 commit comments