-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
37 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,40 +68,3 @@ jobs: | |
with: | ||
name: artifacts | ||
path: linkml-schema/tests_artifacts/* | ||
|
||
# - name: Download all artifacts | ||
# uses: actions/download-artifact@v4 | ||
# with: | ||
# name: artifacts | ||
# path: ./tmp # Specify the directory to download artifacts into | ||
|
||
|
||
# - name: Create a new testing branch to check autogenerated formats (deleting first if the branch exists) | ||
# run: | | ||
# branch_name="testing-autogen-formats" | ||
# | ||
# # Check if the branch exists locally | ||
# if git show-ref --verify --quiet refs/heads/$branch_name; then | ||
# echo "Branch $branch_name exists locally. Deleting it." | ||
# git branch -D $branch_name | ||
# fi | ||
# # creating the new branch | ||
# git checkout -b $branch_name | ||
# | ||
# | ||
# - name: Creating another branch and to check other model representations | ||
# run: | | ||
# branch_name="testing-autogen-formats" | ||
# git config --local user.email "[email protected]" | ||
# git config --local user.name "GitHub Action" | ||
# if ! git diff --quiet; then | ||
# git add json-schema-autogen/*.json | ||
# git add jsonld-context-autogen/*.context.jsonld | ||
# git add models_py-autogen/*.py | ||
# git add erdiagram-autogen/*.md | ||
# git commit -m "generate another formats and add them to the testing branch" | ||
# git push | ||
# else | ||
# echo "No changes to commit" | ||
# fi | ||
|