Compare commits

..

No commits in common. "d88e3ba69dfff7c0398fbfcac80bb6f02a938484" and "efefc01be6a323a03a137a9dd49e08a735a2471b" have entirely different histories.

1 changed files with 4 additions and 4 deletions

View File

@ -29,11 +29,11 @@ jobs:
- name: Extract tag for kaniko action
id: tag
env:
TAG: ${{ steps.meta.outputs.tags }}
TAG: ${{ steps.meta.outputs.tags[0] }}
run: |
echo "TAG=$TAG"
echo "::set-output name=tag::${TAG##*:}"
- name: Build Docker image with kaniko
uses: https://code.thetadev.de/ThetaDev/action-kaniko@dbb8da86cf2d498dde8ec1b3be967ceda17a21ff
with:
@ -43,10 +43,10 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
tag: ${{ steps.tag.outputs.tag }}
platforms: linux/amd64
tag_with_latest: ${{ gitea.ref == format('refs/heads/{0}', gitea.event.repository.default_branch) }}
tag_with_latest: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
- name: Trigger redeployment
if: gitea.ref == format('refs/heads/{0}', gitea.event.repository.default_branch)
if: gitea.ref == 'refs/heads/main'
env:
UPDATE_URL: ${{ secrets.UPDATE_URL }}
UPDATE_TOKEN: ${{ secrets.UPDATE_TOKEN }}