use username instead of organisation name

This commit is contained in:
Vri 🌈 2023-05-04 17:34:50 +02:00
parent b91a8e9efd
commit e3949e3cf1
Signed by: vrifox
GPG key ID: D40098E5B60B2197

View file

@ -13,12 +13,12 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Log in to Forgejo package registry
- name: Log in to package registry
uses: docker/login-action@v1
with:
registry: https://code.cozy.town/
username: ${{ secrets.FORGEJO_USERNAME }}
password: ${{ secrets.FORGEJO_TOKEN }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push Base image
uses: docker/build-push-action@v2
@ -26,7 +26,7 @@ jobs:
context: .
file: ./container/base/Dockerfile
push: true
tags: codeforleipzig/stadtratmonitor:latest
tags: ${{ secrets.REGISTRY_USERNAME }}/stadtratmonitor:base-latest
- name: Build and push Deploy image
uses: docker/build-push-action@v2
@ -34,7 +34,7 @@ jobs:
context: .
file: ./container/deploy/Dockerfile
push: true
tags: codeforleipzig/stadtratmonitor-deploy:latest
tags: ${{ secrets.REGISTRY_USERNAME }}/stadtratmonitor:deploy-latest
- name: Build and push Develop image
uses: docker/build-push-action@v2
@ -42,7 +42,7 @@ jobs:
context: .
file: ./container/develtop/Dockerfile
push: true
tags: codeforleipzig/stadtratmonitor-develop:latest
tags: ${{ secrets.REGISTRY_USERNAME }}/stadtratmonitor:develop-latest
- name: Build and push Test image
uses: docker/build-push-action@v2
@ -50,4 +50,4 @@ jobs:
context: .
file: ./container/test/Dockerfile
push: true
tags: codeforleipzig/stadtratmonitor-test:latest
tags: ${{ secrets.REGISTRY_USERNAME }}/stadtratmonitor:test-latest