Disable alphalink container build job

This commit is contained in:
Dima
2026-02-10 12:32:35 +01:00
committed by GitHub
parent ceaa4d38fa
commit 6b6cbaccd9

View File

@@ -94,37 +94,37 @@ jobs:
tags: ${{ secrets.DOCKER_USERNAME }}/alphafold2:${{ github.event.release.tag_name }}
ssh: default
build-alphalink-container:
runs-on: ubuntu-latest
steps:
- uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- uses: actions/checkout@v4
- run: rm -rf /opt/hostedtoolcache
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: docker/setup-buildx-action@v3
- name: Build and push alphalink container
if: github.event_name == 'push'
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/alphalink.dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/alphalink:latest
ssh: default
- name: Build and push alphalink container with version
if: github.event_name == 'release' && github.event.action == 'published'
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/alphalink.dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/alphalink:${{ github.event.release.tag_name }}
ssh: default
# build-alphalink-container:
# runs-on: ubuntu-latest
# steps:
# - uses: webfactory/ssh-agent@v0.9.0
# with:
# ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
# - uses: actions/checkout@v4
# - run: rm -rf /opt/hostedtoolcache
# - uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
# - uses: docker/setup-buildx-action@v3
# - name: Build and push alphalink container
# if: github.event_name == 'push'
# uses: docker/build-push-action@v5
# with:
# context: .
# file: ./docker/alphalink.dockerfile
# push: true
# tags: ${{ secrets.DOCKER_USERNAME }}/alphalink:latest
# ssh: default
# - name: Build and push alphalink container with version
# if: github.event_name == 'release' && github.event.action == 'published'
# uses: docker/build-push-action@v5
# with:
# context: .
# file: ./docker/alphalink.dockerfile
# push: true
# tags: ${{ secrets.DOCKER_USERNAME }}/alphalink:${{ github.event.release.tag_name }}
# ssh: default
build-alphafold3-container:
runs-on: ubuntu-latest