commit 2003f379b4814108fc23371bf888a4d32df1a021 parent 9171f8f8e4bdb179c8c7586e6e1de49c7877374f Author: iostpa <iostpa@iostpa.com> Date: Mon, 20 Apr 2026 16:36:54 +0300 Readd my git instance Diffstat:
| M | .github/workflows/publish-release.yml | | | 6 | ++++++ |
| M | .github/workflows/publish.yml | | | 11 | +++++++++-- |
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml @@ -29,6 +29,12 @@ 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: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@v6 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