.gitea/workflows/deploy.yaml aktualisiert
Some checks failed
Build and Push Docker Images / build (push) Failing after 1m44s

This commit is contained in:
2025-10-22 02:34:26 +02:00
parent 1980e14e88
commit 4fbcee761d

View File

@@ -10,10 +10,6 @@ jobs:
build:
runs-on: ubuntu-latest
env:
ACCESS_TOKEN_SECRET: ${{ secrets.ACCESS_TOKEN_SECRET }}
REFRESH_TOKEN_SECRET: ${{ secrets.REFRESH_TOKEN_SECRET }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
@@ -37,8 +33,8 @@ jobs:
run: |
echo "🚀 Building Server..."
docker buildx build \
--build-arg ACCESS_TOKEN_SECRET=${ACCESS_TOKEN_SECRET} \
--build-arg REFRESH_TOKEN_SECRET=${REFRESH_TOKEN_SECRET} \
--build-arg ACCESS_TOKEN_SECRET=${secrets.ACCESS_TOKEN_SECRET} \
--build-arg REFRESH_TOKEN_SECRET=${secrets.REFRESH_TOKEN_SECRET} \
--load -t crylia/japanese-srs-trainer-wanikani-server:latest -f server/Dockerfile server
docker tag crylia/japanese-srs-trainer-wanikani-server:latest 192.168.0.26:5008/japanese-srs-trainer-wanikani-server:latest
docker push 192.168.0.26:5008/japanese-srs-trainer-wanikani-server:latest