diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 89e6677..eb9758a 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: - name: Docker login uses: docker/login-action@v2 with: - registry: ${{ secrets.REGISTRY_URL }} + registry: ${{ vars.REGISTRY_URL }} username: ${{ secrets.REGISTRY_USER }} password: ${{ secrets.REGISTRY_PASSWORD }} @@ -23,5 +23,5 @@ jobs: context: . push: true tags: | - ${{ secrets.REGISTRY_URL }}/${{ vars.GITEA_REPOSITORY }}:${{ github.sha }} - ${{ secrets.REGISTRY_URL }}/${{ vars.GITEA_REPOSITORY }}:latest + ${{ vars.REGISTRY_URL }}/${{ vars.GITEA_REPOSITORY }}:${{ github.sha }} + ${{ vars.REGISTRY_URL }}/${{ vars.GITEA_REPOSITORY }}:latest