Skip to content

Commit

Permalink
reverted action test to a working one
Browse files Browse the repository at this point in the history
  • Loading branch information
carmithersh committed May 20, 2024
1 parent 4dca4df commit 9d87f0a
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/oidc-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,16 @@ jobs:
run: |
jf rt s "some-repo/"
- name: Test User Output
- name: Test outputs
shell: bash
run: test -n "${{ steps.setup-jfrog-cli.outputs.jf-oidc-user }}"

- name: Test Token Output
shell: bash
run: test -n "${{ steps.setup-jfrog-cli.outputs.jf-oidc-token }}"
run: |
echo "os is $RUNNER_OS"
if [ -z "${{ steps.setup.outputs.jf-oidc-token }}" ]; then
exit 1
fi
if [ -z "${{ steps.setup.outputs.jf-oidc-user }}" ]; then
exit 1
fi
# Removing the OIDC integration will remove the Identity Mapping as well
- name: Delete OIDC integration
Expand Down

0 comments on commit 9d87f0a

Please sign in to comment.