commit dcdeb1c9e8eaa4a0831794d63e092842e66d7e39 parent 2b3bd6b6ae1a972eaec374f6e4671a3c311c6779 Author: iostpa <iostpa@iostpa.com> Date: Sat, 18 Apr 2026 10:14:35 +0300 Start publishing docker images to my git instance now Diffstat:
| M | .github/workflows/publish.yml | | | 11 | +++++++++-- |
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml @@ -29,10 +29,17 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GHCR_TOKEN }} + - name: Login to git.iostpa.com + uses: docker/login-action@v4 + with: + registry: git.iostpa.com + username: ${{ github.repository_owner }} + password: ${{ secrets.FORGEJO_TOKEN }} - name: Build and Push Docker Image uses: docker/build-push-action@v7 with: context: . push: true tags: | - ghcr.io/${{ github.repository_owner }}/reviewbot:latest- \ No newline at end of file + ghcr.io/${{ github.repository_owner }}/reviewbot:latest + git.iostpa.com/${{ github.repository_owner }}/reviewbot:latest+ \ No newline at end of file