We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we do this
- name: Docker authentication run: | docker login "$AZ_DOCKER_REGISTRY" -u "$GITHUB_ACTOR" -p ${{ secrets.AZ_DOCKER_REGISTRY_TOKEN }}
Change how we log into the docker registry to
https://github.com/docker/login-action#github-container-registry
- name: Login to GitHub Container Registry uses: docker/login-action@v1 with: registry: $AZ_DOCKER_REGISTRY username: $GITHUB_ACTOR password: ${{ secrets.AZ_DOCKER_REGISTRY_TOKEN }}
The text was updated successfully, but these errors were encountered:
Close #1284 update how we log into the docker container registry.
04d0bfb
d268317
#1284: Update usage of environment variables in review site workflow.
29649c7
#1284: Update usage of environment variables in review site workflow. (…
9b0deb6
…#1288)
trackleft
Successfully merging a pull request may close this issue.
Motivation
Proposed Resolution
Currently we do this
Change how we log into the docker registry to
https://github.com/docker/login-action#github-container-registry
The text was updated successfully, but these errors were encountered: