Skip to content

Commit

Permalink
Fix for CI (#19)
Browse files Browse the repository at this point in the history
* fix for CI

* update Makefile

* update

* update
  • Loading branch information
shunk031 authored Jun 25, 2024
1 parent 4f07df8 commit 8ccacb7
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/layout_alignment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ jobs:
HF_USERNAME: ${{ secrets.HF_USERNAME }}
HF_EMAIL: ${{ secrets.HF_EMAIL }}
run: |
make deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
makefile_path=${SRC_DIR}/Makefile
make -f ${makefile_path} deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
3 changes: 2 additions & 1 deletion .github/workflows/layout_average_iou.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ jobs:
HF_USERNAME: ${{ secrets.HF_USERNAME }}
HF_EMAIL: ${{ secrets.HF_EMAIL }}
run: |
make deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
makefile_path=${SRC_DIR}/Makefile
make -f ${makefile_path} deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
3 changes: 2 additions & 1 deletion .github/workflows/layout_generative_model_scores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ jobs:
HF_USERNAME: ${{ secrets.HF_USERNAME }}
HF_EMAIL: ${{ secrets.HF_EMAIL }}
run: |
make deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
makefile_path=${SRC_DIR}/Makefile
make -f ${makefile_path} deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
3 changes: 2 additions & 1 deletion .github/workflows/layout_maximum_iou.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ jobs:
HF_USERNAME: ${{ secrets.HF_USERNAME }}
HF_EMAIL: ${{ secrets.HF_EMAIL }}
run: |
make deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
makefile_path=${SRC_DIR}/Makefile
make -f ${makefile_path} deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
3 changes: 2 additions & 1 deletion .github/workflows/layout_overlap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ jobs:
HF_USERNAME: ${{ secrets.HF_USERNAME }}
HF_EMAIL: ${{ secrets.HF_EMAIL }}
run: |
make deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
makefile_path=${SRC_DIR}/Makefile
make -f ${makefile_path} deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
3 changes: 2 additions & 1 deletion .github/workflows/layout_validity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ jobs:
HF_USERNAME: ${{ secrets.HF_USERNAME }}
HF_EMAIL: ${{ secrets.HF_EMAIL }}
run: |
make deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
makefile_path=${SRC_DIR}/Makefile
make -f ${makefile_path} deploy REPO_NAME=${REPO_NAME} DIR_NAME=${DIR_NAME}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ endif
deploy: check-vars
script_name=$(REPO_NAME).py

cp $(SRC_DIR)/$(DIR_NAME)/README.md $(DST_DIR)/README.md
cp $(SRC_DIR)/$(DIR_NAME)/README.md $(DST_DIR)/README.md | true
cp $(SRC_DIR)/$(DIR_NAME)/${script_name} $(DST_DIR)/${script_name}

git -C $(DST_DIR) config user.name $(HF_USERNAME)
Expand Down

0 comments on commit 8ccacb7

Please sign in to comment.