diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 722438b..4939523 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: creates output + run: sh ./build.sh + - name: Config git extraheader run: | git config --unset-all http.https://github.com/.extraheader diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..9ec1f67 --- /dev/null +++ b/build.sh @@ -0,0 +1,5 @@ +#!/bin/sh +cd ../ +mkdir output +cp -R ./[client]/* ./output +cp -R ./output ./[client]/ \ No newline at end of file