Skip to content

Commit

Permalink
test: secret access
Browse files Browse the repository at this point in the history
  • Loading branch information
EveningStarlight committed Nov 29, 2024
1 parent fe46592 commit 17873f0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/docker-build-test-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Debug Secrets Access
run: |
echo "Username: ${{ secrets.REGISTRY_USERNAME }}"
echo "Password: ${{ secrets.REGISTRY_PASSWORD }}"
- uses: actions/checkout@master

- name: Run Hadolint
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ on:
- "requirements-dev.txt"

jobs:
test-secrets:
- name: Debug Secrets Access
run: |
echo "Username: ${{ secrets.REGISTRY_USERNAME }}"
echo "Password: ${{ secrets.REGISTRY_PASSWORD }}"
base-cpu:
uses: ./.github/workflows/docker-build-test-upload.yaml
with:
Expand Down

0 comments on commit 17873f0

Please sign in to comment.