diff --git a/.github/workflows/develop_branch.yml b/.github/workflows/develop_branch.yml index db20a04..a84ef58 100644 --- a/.github/workflows/develop_branch.yml +++ b/.github/workflows/develop_branch.yml @@ -21,6 +21,9 @@ jobs: runs-on: self-hosted container: image: ghcr.io/ansible/community-ansible-dev-tools:latest + credentials: + username: "${{ secrets.GHCR_USERNAME }}" + password: "${{ secrets.GHCR_PASSWORD }}" steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/main_branch.yml b/.github/workflows/main_branch.yml index 4716ebe..69da981 100644 --- a/.github/workflows/main_branch.yml +++ b/.github/workflows/main_branch.yml @@ -20,6 +20,9 @@ jobs: runs-on: self-hosted container: image: ghcr.io/ansible/community-ansible-dev-tools:latest + credentials: + username: "${{ secrets.GHCR_USERNAME }}" + password: "${{ secrets.GHCR_PASSWORD }}" steps: - name: Checkout uses: actions/checkout@v4 @@ -85,6 +88,9 @@ jobs: environment: Production container: image: ghcr.io/ansible/community-ansible-dev-tools:latest + credentials: + username: "${{ secrets.GHCR_USERNAME }}" + password: "${{ secrets.GHCR_PASSWORD }}" volumes: - /home/runner/ansible-vault:/tmp:ro - /home/runner/.ssh:/root/.ssh:ro