Skip to content

Commit

Permalink
feat: readd copy of artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
arnoweiss committed Dec 16, 2024
1 parent 4bf53f3 commit cf08343
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/checkout-tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,22 @@ do
echo starting with tag $tag
mkdir $tag
cd $tag
git clone ${{ github.repositoryUrl }} --depth 1 --branch ${tag} --quiet
rm -r -f .git
cd ${{ github.event.repository.name }}
mv * ..
cd ../..
rm -r ${{ github.event.repository.name }}
git clone https://github.com/arnoweiss/decentralized-claims-protocol.git --depth 1 --branch ${tag} --quiet
mv ./decentralized-claims-protocol/* .
if [ -f "./index.html" ]; then
echo "index exists."
cp specifications/*.png .
cp specifications/*.yaml .
mkdir -p resources/v0.8
cp -r artifacts/src/main/resources/* resources/v0.8
rm -rf artifacts
else
echo "index does not exist. No copy operations"
fi

cd ..
done
pwd
cd ..



Expand Down

0 comments on commit cf08343

Please sign in to comment.