Skip to content

Commit

Permalink
Make a copy of non-HTML files
Browse files Browse the repository at this point in the history
Signed-off-by: Arthit Suriyawongkul <[email protected]>
  • Loading branch information
bact committed Feb 20, 2025
1 parent 4d3edfb commit f0798b7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/publish_v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,14 @@ jobs:
dirs="$VERSION_ALIASES"
for dir in $dirs; do
mkdir -p "$dir"/rdf
mkdir -p "$dir"/model
cp $VERSION/rdf/* "$dir"/rdf
cp $VERSION/rdf/* "$dir"/model
git add "$dir"/rdf/* "$dir"/model/*
mkdir -p "$dir"/diagram
cp $VERSION/diagram/* "$dir"/diagram
mkdir -p "$dir"/jsondump
cp $VERSION/jsondump/* "$dir"/jsondump
git add "$dir"/rdf/* "$dir"/model/* "$dir"/diagram/* "$dir"/jsondump/*
done
git commit -m "Copy schema and RDFs to alias directories: $VERSION_ALIASES"
git push origin $GH_PAGES_BRANCH
Expand Down

0 comments on commit f0798b7

Please sign in to comment.