From 971ca19d790fafa272c093def93cb2892a5cd41f Mon Sep 17 00:00:00 2001 From: Lunaresk Date: Thu, 3 Feb 2022 09:58:03 +0100 Subject: [PATCH] major: new repo structure Moved the client and server in different repositories. --- .github/workflows/main.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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 }}