Skip to content

Commit

Permalink
Restructure script
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook committed Aug 6, 2024
1 parent dc1e7ab commit 9bd4157
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ jobs:
git config --global user.name 'iamacook'
git config --global user.email '[email protected]'
git clone https://github.com/5afe/cgw-sdk
cp -r dist/sdk/* cgw-sdk
cd cgw-sdk
if [ -d "dist" ]; then
rm -rf dist
fi
mkdir -p dist
cp -r ../dist/sdk/* dist/
git add .
git commit -m "Update SDK according to ${{ github.sha }}"
git push https://[email protected]/5afe/cgw-sdk.git

0 comments on commit 9bd4157

Please sign in to comment.