Skip to content

Commit

Permalink
fix(ci): reusable workflow outputs
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Klick <[email protected]>
  • Loading branch information
nathanklick committed Mar 22, 2024
1 parent 2051871 commit e7e6c41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/node-zxc-build-release-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -599,17 +599,14 @@ jobs:

- name: Setup JFrog CLI
uses: jfrog/setup-jfrog-cli@d82fe26823e1f25529250895d5673f65b02af085 # v4.0.1
if: ${{ inputs.dry-run-enabled != true && inputs.registry-name == 'jfrog' && !cancelled() && !failure() }}
env:
JF_URL: ${{ secrets.jf-url }}
JF_ACCESS_TOKEN: ${{ secrets.jf-access-token }}

- name: Show JFrog Config
if: ${{ inputs.dry-run-enabled != true && inputs.registry-name == 'jfrog' && !cancelled() && !failure() }}
run: jfrog config show

- name: Verify JFrog Connectivity
if: ${{ inputs.dry-run-enabled != true && inputs.registry-name == 'jfrog' && !cancelled() && !failure() }}
run: jfrog rt ping

- name: Docker Login (GCP)
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/zxc-publish-production-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,17 @@ on:
type: string
default: "Publish Production Image (GCP)"
outputs:
docker-registry:
description: "Docker Registry"
value: ${{ jobs.publish-image.outputs.docker-registry }}
docker-image:
description: "Docker Image:"
description: "Docker Image"
value: ${{ jobs.publish-image.outputs.docker-image }}
docker-image-prefix:
description: "Docker Image Prefix:"
description: "Docker Image Prefix"
value: ${{ jobs.publish-image.outputs.docker-image-prefix }}
docker-image-tag:
description: "Docker Image Tag:"
description: "Docker Image Tag"
value: ${{ jobs.publish-image.outputs.docker-image-tag }}
secrets:
jf-url:
Expand Down

0 comments on commit e7e6c41

Please sign in to comment.