Skip to content

Commit

Permalink
add params
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Feb 12, 2025
1 parent 4e5b0a8 commit a9f24a7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/dagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ jobs:
env:
REGISTRY_ADDRESS: "ttl.sh/ptime/test:latest"
REGISTRY_USERNAME: "joe"
#REGISTRY_PASSWORD: "password"
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_TOKEN }}
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_TOKEN }} // TODO
DT_ADDRESS: "https://deptrack-test.ocp.cloudscale.puzzle.ch/api/v1/bom"
DT_PROJECT_UUID: "93394d20-7c48-4ecf-8caa-7fe63ae1a275"
DT_API_KEY: ${{ secrets.DT_API_KEY }} // TODO
with:
# Dagger Version
version: 0.15.3
Expand All @@ -29,7 +31,7 @@ jobs:
# Dagger module to call. Local or Git
module: .
# Arguments to pass to CLI
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/
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/
- name: Unittest Report
uses: dorny/test-reporter@v1.9.1
with:
Expand Down

0 comments on commit a9f24a7

Please sign in to comment.