diff options
| author | Fuwn <[email protected]> | 2024-07-24 04:16:26 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-24 04:16:26 +0000 |
| commit | 6ded02bfec96343ca45b41808e6276ba76833ed3 (patch) | |
| tree | 59c0ef4db3183fdeae01940c91ab508eda2d7138 /.github/workflows | |
| parent | fix(html): use markdown safety (diff) | |
| download | september-6ded02bfec96343ca45b41808e6276ba76833ed3.tar.xz september-6ded02bfec96343ca45b41808e6276ba76833ed3.zip | |
ci(actions): remove docker workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docker.yaml | 51 |
1 files changed, 0 insertions, 51 deletions
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 |