From d6bdb493b793e2476c14f47625921e1c7f82458b Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Sun, 20 Apr 2025 07:11:10 -0600 Subject: [PATCH] fix: remove docker from release --- .github/workflows/release.yaml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7e9245a..2c30149 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -44,30 +44,3 @@ jobs: - uses: pypa/gh-action-pypi-publish@release/v1 with: packages-dir: ${{ needs.package_name.outputs.package_name}}/dist - - docker: - name: Build Docker Image - runs-on: ubuntu-latest - needs: package_name - if: ${{ needs.package_name.outputs.package_name }} == 'stapi-fastapi' - - permissions: - contents: read - packages: write - id-token: write - - steps: - - name: Log in to the Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Build and Push Docker Image - uses: docker/build-push-action@v6 - with: - push: true - tags: stapi-spec/stapi-fastapi:${{ github.ref_name }} - build-args: PYTHON_VERSION='3.12'