diff --git a/.github/workflows/nightly-build.yaml b/.github/workflows/nightly-build.yaml index 3856324..a403f23 100644 --- a/.github/workflows/nightly-build.yaml +++ b/.github/workflows/nightly-build.yaml @@ -19,7 +19,10 @@ jobs: - name: Restore dependencies run: dotnet restore - name: Restore nuget packages - run: nuget restore + run: | + sudo apt update + sudo apt install -y nuget + nuget restore - name: Build client and installer run: dotnet build RageCoop.Client.Installer/RageCoop.Client.Installer.csproj --configuration Release -o bin/Release/Client/RageCoop - name: Build server win-x64 @@ -39,37 +42,4 @@ jobs: - uses: vimtor/action-zip@v1 with: files: bin/Release/Server/linux-x64 - dest: RageCoop.Server-linux-x64.zip - - - uses: WebFreak001/deploy-nightly@v1.1.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # automatically provided by github actions - with: - upload_url: https://uploads.github.com/repos/RAGECOOP/RAGECOOP-V/releases/70603992/assets{?name,label} - release_id: 70603992 - asset_path: RageCoop.Client.zip - asset_name: RageCoop.Client.zip - asset_content_type: application/zip - max_releases: 7 - - - uses: WebFreak001/deploy-nightly@v1.1.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # automatically provided by github actions - with: - upload_url: https://uploads.github.com/repos/RAGECOOP/RAGECOOP-V/releases/70603992/assets{?name,label} - release_id: 70603992 - asset_path: RageCoop.Server-win-x64.zip - asset_name: RageCoop.Server-win-x64.zip - asset_content_type: application/zip - max_releases: 7 - - - uses: WebFreak001/deploy-nightly@v1.1.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # automatically provided by github actions - with: - upload_url: https://uploads.github.com/repos/RAGECOOP/RAGECOOP-V/releases/70603992/assets{?name,label} - release_id: 70603992 - asset_path: RageCoop.Server-linux-x64.zip - asset_name: RageCoop.Server-linux-x64.zip - asset_content_type: application/zip - max_releases: 7 + dest: RageCoop.Server-linux-x64.zip \ No newline at end of file