diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..12af36a --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,30 @@ +name: gitea-CI +on: [push] + +jobs: + poetry-src-regen: + runs-on: windows-amd64 + steps: + - name: checkout + uses: actions/checkout@v4 + + + - name: upload-1 + uses: actions/upload-artifact@v3 + with: + name: win64 dist.zip + path: | + .\dist\*.txt + if-no-files-found: error + compression-level: 9 + overwrite: true + + - name: upload-2 + uses: actions/upload-artifact@v3 + with: + name: win64_dist.zip + path: | + .\dist\*.txt + if-no-files-found: error + compression-level: 9 + overwrite: true \ No newline at end of file