Skip to content

Commit

Permalink
Update CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
pikhovkin committed Aug 1, 2023
1 parent 8e8cbe5 commit 670e6dd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Image pull
run: docker pull ${{ env.GHCR_IMAGE_NAME }}:test
run: |
echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
docker pull ${{ env.GHCR_IMAGE_NAME }}:test
docker logout
- name: Docker login
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
- name: Docker push
Expand Down

0 comments on commit 670e6dd

Please sign in to comment.