mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-01-11 03:00:08 +01:00
fix docker repo path
This commit is contained in:
parent
b574c8693f
commit
06f0e01649
8
.github/workflows/build_image.yml
vendored
8
.github/workflows/build_image.yml
vendored
|
|
@ -12,9 +12,9 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build the Docker image for the Client
|
||||
run: docker build . --file Dockerfile --target client --tag docker.pkg.github.com/janspeller/bw3-core/client:latest
|
||||
run: docker build . --file Dockerfile --target client --tag ghcr.io/janspeller/bw3-core/client:latest
|
||||
- name: Build the Docker image for the Server
|
||||
run: docker build . --file Dockerfile --target server --tag docker.pkg.github.com/janspeller/bw3-core/server:latest
|
||||
run: docker build . --file Dockerfile --target server --tag ghcr.io/janspeller/bw3-core/server:latest
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
|
|
@ -22,6 +22,6 @@ jobs:
|
|||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GH_PAT }}
|
||||
- name: Push the Client Docker image to Github package repository
|
||||
run: docker push docker.pkg.github.com/janspeller/bw3-core/client:latest
|
||||
run: docker push ghcr.io/janspeller/bw3-core/client:latest
|
||||
- name: Push the Server Docker image to Github package repository
|
||||
run: docker push docker.pkg.github.com/janspeller/bw3-core/server:latest
|
||||
run: docker push ghcr.io/janspeller/bw3-core/server:latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue