diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d3f79fe..031af61 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,17 +12,11 @@ jobs: uses: thedoctor0/zip-release@master with: type: 'zip' - path: "server" + path: "." filename: 'server.zip' - - name: Archive Client - uses: thedoctor0/zip-release@master - with: - type: 'zip' - path: "client" - filename: 'client.zip' - name: Release Archive uses: ncipollo/release-action@v1 with: allowUpdates: true - artifacts: "server.zip,client.zip" + artifacts: "server.zip" token: ${{ secrets.GITHUB_TOKEN }}