diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d7f7b3..f903f73 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,4 +12,12 @@ jobs: uses: actions/checkout@v4 - name: List files - run: ls -la \ No newline at end of file + run: ls -la + + - name: Create zip file + run: | + mkdir -p dist + zip -r dist/buctAuthentication.zip . -x "*.git*" -x "dist/*" + + - name: List dist files + run: ls -la dist \ No newline at end of file