Skip to content

Commit

Permalink
chore: Update Docker build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TF-chrobiche committed Aug 28, 2024
1 parent 06943c6 commit fed76d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Build Docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
uses: docker/setup-buildx-action@v1

- name: Log in to Private Registry
run: echo "${{ secrets.REGISTRY_SECRET }}" | docker login ${{ secrets.REGISTRY_URL }} --username unused --password-stdin
run: echo "${{ secrets.REGISTRY_SECRET }}" | docker login https://registry.robiche.fr:443 --username unused --password-stdin

- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: ./build
file: ./build/Dockerfile
push: true
tags: registry2.robiche.fr/rustdesk-api-server:latest
tags: registry.robiche.fr/rustdesk-api-server:latest

- name: Docker Logout
run: docker logout ${{ secrets.REGISTRY_URL }}

0 comments on commit fed76d2

Please sign in to comment.