Skip to content

Commit a9f24a7

Browse files
committed
add params
1 parent 4e5b0a8 commit a9f24a7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/dagger.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ jobs:
1313
env:
1414
REGISTRY_ADDRESS: "ttl.sh/ptime/test:latest"
1515
REGISTRY_USERNAME: "joe"
16-
#REGISTRY_PASSWORD: "password"
17-
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_TOKEN }}
16+
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_TOKEN }} // TODO
17+
DT_ADDRESS: "https://deptrack-test.ocp.cloudscale.puzzle.ch/api/v1/bom"
18+
DT_PROJECT_UUID: "93394d20-7c48-4ecf-8caa-7fe63ae1a275"
19+
DT_API_KEY: ${{ secrets.DT_API_KEY }} // TODO
1820
with:
1921
# Dagger Version
2022
version: 0.15.3
@@ -29,7 +31,7 @@ jobs:
2931
# Dagger module to call. Local or Git
3032
module: .
3133
# Arguments to pass to CLI
32-
args: ci-integration --pass=true --dir=./ --registry-address=${{ env.REGISTRY_ADDRESS }} --registry-username=${{ env.REGISTRY_USERNAME }} --registry-password=env:${{ env.REGISTRY_PASSWORD }} export --path=./reports/
34+
args: ci-integration --pass=true --dir=./ --registry-address=${{ env.REGISTRY_ADDRESS }} --registry-username=${{ env.REGISTRY_USERNAME }} --registry-password=env:${{ env.REGISTRY_PASSWORD }} --dt-address=${{ env.DT_ADDRESS }} --dt-project-uuid=${{ env.DT_PROJECT_UUID }} --dt-api-key=env:${{ env.DT_API_KEY }} export --path=./reports/
3335
- name: Unittest Report
3436
uses: dorny/[email protected]
3537
with:

0 commit comments

Comments
 (0)