fix: space missing from data_formatter_template causing mismatch with response_template #1528
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Image | |
on: | |
push: | |
branches: [ "main", "release" ] | |
pull_request: | |
branches: [ "main", "release" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Free disk space | |
run: | | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
if [ "$(docker image ls -q)" ]; then docker rmi $(docker image ls -aq); fi | |
df -h | |
- name: Build image | |
run: | | |
docker build -t fms-hf-tuning:dev . -f build/Dockerfile |