diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 41394b4..2e7e5f2 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -14,7 +14,11 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Login to Gitea Container Registry - run: echo $CR_PAT | docker login git.walamana.de -u $GITEA_USERNAME --password-stdin + uses: docker/login-action@v2 + with: + registry: git.walamana.de + username: ${{github.repository_owner}} + password: ${{secrets.GITEA_TOKEN}} - name: Build Docker image run: docker build -t minis-data-old . \ No newline at end of file diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml deleted file mode 100644 index f429991..0000000 --- a/.gitea/workflows/test.yaml +++ /dev/null @@ -1,10 +0,0 @@ -name: "Test" - -on: - push: - -jobs: - show: - runs-on: ubuntu-latest - steps: - - run: printenv \ No newline at end of file