Skip to content

Commit 4bcd477

Browse files
committed
check single default
1 parent 6b8b263 commit 4bcd477

File tree

2 files changed

+41
-76
lines changed

2 files changed

+41
-76
lines changed

.github/workflows/multi.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: "Multi config test"
2+
3+
on: push
4+
5+
env:
6+
JFROG_CLI_LOG_LEVEL: DEBUG
7+
8+
permissions:
9+
# This is required for requesting the OIDC token
10+
id-token: write
11+
# This is required for actions/checkout
12+
contents: read
13+
security-events: write
14+
jobs:
15+
Python-Tests:
16+
name: ${{ matrix.os }}
17+
strategy:
18+
#fail-fast: false
19+
matrix:
20+
os: [ ubuntu-latest ]
21+
runs-on: ${{ matrix.os }}
22+
steps:
23+
- name: Checkout
24+
uses: actions/checkout@v4
25+
- name: Setup JFrog CLI
26+
uses: RobiNino/setup-jfrog-cli@multi-config
27+
#id: setup-cli
28+
env:
29+
JF_URL: ${{ vars.JF_URL_ECO }}
30+
JF_USER: ${{ secrets.JF_USER_ECO }}
31+
JF_PASSWORD: ${{ secrets.JF_PASS_ECO }}
32+
#JF_ACCESS_TOKEN: ${{ secrets.JF_REF_TOKEN_ECO }}
33+
#with:
34+
# version: 2.67.0
35+
# # OIDC provider name from the OIDC integration page in the JFrog Platform
36+
# #oidc-provider-name: robi-oidc-test-groups
37+
38+
- name: Check
39+
run: |
40+
- jf rt ping
41+
- jf c show

.github/workflows/pipenv.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

0 commit comments

Comments
 (0)