♻️ Simple & Efficient Gemini-to-HTTP Proxy fuwn.net
proxy gemini-protocol protocol gemini http rust
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(actions): remove docker workflow

Fuwn 6ded02bf 5539b524

-51
-51
.github/workflows/docker.yaml
··· 1 - name: Docker 🐳 2 - 3 - on: 4 - workflow_dispatch: 5 - workflow_run: 6 - workflows: ["Check ✅"] 7 - types: 8 - - completed 9 - 10 - jobs: 11 - docker: 12 - name: Docker 🐳 13 - runs-on: ubuntu-latest 14 - steps: 15 - - name: Checkout 🛒 16 - if: startsWith(github.ref, 'refs/tags/v') 17 - uses: actions/checkout@v3 18 - 19 - - name: Login to DockerHub 🐳 20 - uses: docker/login-action@v2 21 - if: startsWith(github.ref, 'refs/tags/v') 22 - with: 23 - username: ${{ secrets.DOCKERHUB_USERNAME }} 24 - password: ${{ secrets.DOCKERHUB_TOKEN }} 25 - 26 - - name: Docker Meta 📄 27 - id: meta 28 - if: startsWith(github.ref, 'refs/tags/v') 29 - uses: docker/metadata-action@v4 30 - with: 31 - images: | 32 - fuwn/september 33 - tags: | 34 - type=semver,pattern={{version}} 35 - type=semver,pattern={{major}}.{{minor}} 36 - 37 - - name: Build and Push ⚙ 38 - uses: docker/build-push-action@v3 39 - if: startsWith(github.ref, 'refs/tags/v') 40 - with: 41 - push: startsWith(github.ref, 'refs/tags/v') 42 - context: . 43 - tags: ${{ steps.meta.outputs.tags }} 44 - labels: ${{ steps.meta.outputs.labels }} 45 - 46 - - name: Deploy 🚀 47 - uses: distributhor/workflow-webhook@v2 48 - if: startsWith(github.ref, 'refs/tags/v') 49 - env: 50 - webhook_url: ${{ secrets.WEBHOOK_URL }} 51 - webhook_secret: september