@@ -126,32 +126,34 @@ jobs:
126126 run : |
127127 python -m build
128128
129- - name : Publish to PyPI
130- env :
131- TWINE_USERNAME : __token__
132- TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
133- run : |
134- twine upload dist/*
135-
136- - name : Set up Docker Buildx
137- uses : docker/setup-buildx-action@v3
138-
139- - name : Login to Quay.io
140- uses : docker/login-action@v3
141- with :
142- registry : quay.io
143- username : ${{ secrets.QUAY_USERNAME }}
144- password : ${{ secrets.QUAY_PASSWORD }}
145-
146- - name : Build and push Docker image
147- uses : docker/build-push-action@v5
148- with :
149- context : .
150- push : true
151- tags : |
152- quay.io/galaxyproject/abm:${{ steps.version.outputs.clean-version }}
153- quay.io/galaxyproject/abm:latest
154- platforms : linux/amd64,linux/arm64
129+ # PyPI upload disabled for testing to avoid version conflicts
130+ # - name: Publish to PyPI
131+ # env:
132+ # TWINE_USERNAME: __token__
133+ # TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
134+ # run: |
135+ # twine upload dist/*
136+
137+ # Docker build and push disabled due to quay.io credential issues
138+ # - name: Set up Docker Buildx
139+ # uses: docker/setup-buildx-action@v3
140+
141+ # - name: Login to Quay.io
142+ # uses: docker/login-action@v3
143+ # with:
144+ # registry: quay.io
145+ # username: ${{ secrets.QUAY_USERNAME }}
146+ # password: ${{ secrets.QUAY_PASSWORD }}
147+
148+ # - name: Build and push Docker image
149+ # uses: docker/build-push-action@v5
150+ # with:
151+ # context: .
152+ # push: true
153+ # tags: |
154+ # quay.io/galaxyproject/abm:${{ steps.version.outputs.clean-version }}
155+ # quay.io/galaxyproject/abm:latest
156+ # platforms: linux/amd64,linux/arm64
155157
156158 - name : Create GitHub Release
157159 id : create-release
0 commit comments