From ad72bf825fe42f28afdaec9db462425b1194f9f2 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 5 Dec 2021 18:55:43 +0100 Subject: [PATCH] Remove previous action for push --- .github/workflows/main.yml | 43 -------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index ef3b77e6..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,43 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master, closed-beta, crux-prime, dev ] - pull_request: - branches: [ master, closed-beta, dev ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - ubuntu-build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2.0.0 - - name: Build project - uses: nicledomaS/cmake_build_action@v1.3 - with: - submodule_update: ON - create_package: OFF - - uses: actions/upload-artifact@v2 - with: - name: MasterServer - path: build/MasterServer - - uses: actions/upload-artifact@v2 - with: - name: WorldServer - path: build/WorldServer - - uses: actions/upload-artifact@v2 - with: - name: ChatServer - path: build/ChatServer - - uses: actions/upload-artifact@v2 - with: - name: AuthServer - path: build/AuthServer