mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-03 17:26:43 +02:00
use username instead of organisation name
This commit is contained in:
parent
b91a8e9efd
commit
e3949e3cf1
1 changed files with 7 additions and 7 deletions
14
.github/workflows/docker-image.yml
vendored
14
.github/workflows/docker-image.yml
vendored
|
@ -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
|
Loading…
Add table
Reference in a new issue