Files
openfold/.github/workflows/docker-image.yml
Workflow config file is invalid. Please check your config file: yaml: line 15: found a tab character where an indentation space is expected
2024-05-09 17:18:42 +07:00

22 lines
450 B
YAML

name: Docker Image CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cleanup
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Build the Docker image
run: docker build . --file Dockerfile --tag openfold:$(date +%s)