🔧 Do not fill exists workflow variables by template values

This commit is contained in:
Maxim Lebedev 2024-05-01 04:30:20 +05:00
parent 4ef2495bf2
commit f933d066ad
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 4 additions and 4 deletions

View File

@ -25,9 +25,9 @@ jobs:
- name: Login to registry
uses: https://gitea.com/docker/login-action@v2
with:
password: ${{ secrets.DOCKER_TOKEN }}
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ gitea.repository_owner }}
password: $${{ secrets.DOCKER_TOKEN }}
registry: $${{ env.DOCKER_REGISTRY }}
username: $${{ gitea.repository_owner }}
- name: Build and push
uses: https://gitea.com/docker/build-push-action@v4
env:
@ -36,4 +36,4 @@ jobs:
context: .
file: ./build/Dockerfile
push: true
tags: ${{ env.DOCKER_REGISTRY }}/${{ gitea.repository }}:${{ gitea.ref_name }}
tags: $${{ env.DOCKER_REGISTRY }}/$${{ gitea.repository }}:$${{ gitea.ref_name }}