Skip to content

Commit 7c59bab

Browse files
authored
chore(test): add secrets file (#273)
* chore(test): add secrets file
1 parent cf72291 commit 7c59bab

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/rhel-e2e-nightly-windows.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,14 @@ jobs:
125125
echo "${{ github.event.inputs.mapt_params || env.DEFAULT_MAPT_PARAMS }}" | awk -F ';' \
126126
'{for (i=1; i<=NF; i++) {split($i, kv, "="); print "MAPT_"kv[1]"="kv[2]}}' >> $GITHUB_ENV
127127
128+
- name: Set env secrets
129+
env:
130+
DVLPR_USERNAME: ${{ secrets.DVLPR_USERNAME }}
131+
DVLPR_PASSWORD: ${{ secrets.DVLPR_PASSWORD }}
132+
run: |
133+
echo "DVLPR_USERNAME=${DVLPR_USERNAME}" >> secrets.txt
134+
echo "DVLPR_PASSWORD=${DVLPR_PASSWORD}" >> secrets.txt
135+
128136
- name: Create instance
129137
uses: podman-desktop/e2e/.github/actions/create-instance@36e440f2ac18193214f4ffa8f7f1c4c0cb8c9446
130138
with:
@@ -160,7 +168,7 @@ jobs:
160168
env-vars: ${{ env.ENV_VARS }}
161169

162170
- name: Run Podman Desktop Playwright E2E tests
163-
uses: podman-desktop/e2e/.github/actions/run-playwright-test@15b800edab941d394b32aaaa3f7961bb7db7ec3a
171+
uses: podman-desktop/e2e/.github/actions/run-playwright-test@db37fcfe19c2265b4840460fa5fed1f130d9a634
164172
with:
165173
pde2e-runner-tag: ${{ env.PDE2E_IMAGE_VERSION }}
166174
podman-desktop-path: true

0 commit comments

Comments
 (0)