1
0

change registry to DigitalOcean
All checks were successful
Build & Publish / build (push) Successful in 5m3s

This commit is contained in:
Jannik Reimers 2025-02-15 03:32:32 +01:00
parent c5ef4b0b56
commit 63102a7ba2

View File

@ -43,21 +43,21 @@ jobs:
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: pi5:8125 registry: registry.digitalocean.com
username: ${{ github.repository_owner }} username: ${{ secrets.DOMAIL }}
password: ${{ secrets.PW }} password: ${{ secrets.DOKEY }}
- name: Build the Docker image - name: Build the Docker image
run: docker build -t pi5:8125/jansel/feixiao:latest -t pi5:8125/jansel/feixiao:${{ steps.date.outputs.date }} . run: docker build -t registry.digitalocean.com/jansel/feixiao:latest -t registry.digitalocean.com/jansel/feixiao:${{ steps.date.outputs.date }} .
- name: Push the Docker image related to this workflow - name: Push the Docker image related to this workflow
run: docker push pi5:8125/jansel/feixiao:${{ steps.date.outputs.date }} run: docker push registry.digitalocean.com/jansel/feixiao:${{ steps.date.outputs.date }}
- name: Push the latest Docker image - name: Push the latest Docker image
run: docker push pi5:8125/jansel/feixiao:latest run: docker push registry.digitalocean.com/jansel/feixiao:latest
- name: Remove the Docker image - name: Remove the Docker image
run: docker rmi pi5:8125/jansel/feixiao:${{ steps.date.outputs.date }} run: docker rmi registry.digitalocean.com/jansel/feixiao:${{ steps.date.outputs.date }}
- name: Force remove the latest Docker image - name: Force remove the latest Docker image
run: docker rmi pi5:8125/jansel/feixiao:latest --force run: docker rmi registry.digitalocean.com/jansel/feixiao:latest --force