From 34cc835f1cabb59c9f0f890ec19e6a1ff67e7178 Mon Sep 17 00:00:00 2001 From: Jonatan Rek Date: Thu, 29 Jan 2026 15:36:15 +0100 Subject: [PATCH] Fixes --- .gitea/workflows/docker-build-dev.yaml | 66 -------------------------- 1 file changed, 66 deletions(-) delete mode 100644 .gitea/workflows/docker-build-dev.yaml diff --git a/.gitea/workflows/docker-build-dev.yaml b/.gitea/workflows/docker-build-dev.yaml deleted file mode 100644 index 49f14fa..0000000 --- a/.gitea/workflows/docker-build-dev.yaml +++ /dev/null @@ -1,66 +0,0 @@ -name: "Build - Docker Image - RC" -run-name: ${{ gitea.actor }} is runs ci pipeline - -on: - push: - branches: - - dev - - schedule: - - cron: "0 1 * * *" - -concurrency: - group: docker-build-dev - cancel-in-progress: true - -jobs: - publish: - runs-on: ubuntu-latest - permissions: - packages: write - container: - image: catthehacker/ubuntu:act-latest - steps: - - uses: actions/checkout@v3 - - - uses: docker/setup-buildx-action@v1 - - - uses: docker/login-action@v3 - with: - registry: git.steelants.cz - username: ${{ secrets.GITEAUSER }} - password: ${{ secrets.GITEAPASSWD }} - - - uses: docker/build-push-action@v6 - with: - context: . - push: true - labels: | - org.steelants.image.traffic.version=${{ env.release_version }} - tags: git.steelants.cz/steelants/docker_php_base:dev - - # ✅ Notifikace při úspěšném deploymentu - - name: Discord Webhook Success - if: success() - uses: tsickert/discord-webhook@v6.0.0 - with: - webhook-url: ${{ secrets.WEBHOOK_URL }} - content: | - ✅ Build successful! - Repo: ${{ github.repository }} - Branch: ${{ github.ref_name }} - Commit: ${{ github.sha }} - Version: ${{ env.release_version }} - - # ❌ Notifikace při neúspěšném deploymentu - - name: Discord Webhook Failure - if: failure() - uses: tsickert/discord-webhook@v6.0.0 - with: - webhook-url: ${{ secrets.WEBHOOK_URL }} - content: | - ❌ Build failed! - Repo: ${{ github.repository }} - Branch: ${{ github.ref_name }} - Commit: ${{ github.sha }} - Version: ${{ env.release_version }} \ No newline at end of file