commit 6023582b4537e8fa1f3d6da1951016825a9e5a1c
parent 5afdce62662ff0b401da31a0865eab4354ec6dda
Author: iostpa <iostpa@iostpa.com>
Date: Mon, 20 Apr 2026 16:40:05 +0300
I forgot to change the token names
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml
@@ -28,13 +28,13 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
- password: ${{ secrets.GHCR_TOKEN }}
+ password: ${{ secrets.MAIN_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 }}
+ password: ${{ secrets.MIRROR_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
@@ -28,13 +28,13 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
- password: ${{ secrets.GHCR_TOKEN }}
+ password: ${{ secrets.MAIN_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 }}
+ password: ${{ secrets.MIRROR_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v7
with: