From 6ded02bfec96343ca45b41808e6276ba76833ed3 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 24 Jul 2024 04:16:26 +0000 Subject: ci(actions): remove docker workflow --- .github/workflows/docker.yaml | 51 ------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/docker.yaml (limited to '.github/workflows') diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml deleted file mode 100644 index 772a61a..0000000 --- a/.github/workflows/docker.yaml +++ /dev/null @@ -1,51 +0,0 @@ -name: Docker 🐳 - -on: - workflow_dispatch: - workflow_run: - workflows: ["Check ✅"] - types: - - completed - -jobs: - docker: - name: Docker 🐳 - runs-on: ubuntu-latest - steps: - - name: Checkout 🛒 - if: startsWith(github.ref, 'refs/tags/v') - uses: actions/checkout@v3 - - - name: Login to DockerHub 🐳 - uses: docker/login-action@v2 - if: startsWith(github.ref, 'refs/tags/v') - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Docker Meta 📄 - id: meta - if: startsWith(github.ref, 'refs/tags/v') - uses: docker/metadata-action@v4 - with: - images: | - fuwn/september - tags: | - type=semver,pattern={{version}} - type=semver,pattern={{major}}.{{minor}} - - - name: Build and Push ⚙ - uses: docker/build-push-action@v3 - if: startsWith(github.ref, 'refs/tags/v') - with: - push: startsWith(github.ref, 'refs/tags/v') - context: . - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - - - name: Deploy 🚀 - uses: distributhor/workflow-webhook@v2 - if: startsWith(github.ref, 'refs/tags/v') - env: - webhook_url: ${{ secrets.WEBHOOK_URL }} - webhook_secret: september -- cgit v1.2.3