From 0dea4d67629cc690876ef016ebe3447e0b5d3512 Mon Sep 17 00:00:00 2001 From: NAmorim Date: Tue, 12 Oct 2021 16:50:38 +0100 Subject: [PATCH] Delete old workflow --- .github/workflows/ci_cd.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/ci_cd.yml diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml deleted file mode 100644 index b45ef4cfa1..0000000000 --- a/.github/workflows/ci_cd.yml +++ /dev/null @@ -1,33 +0,0 @@ -# name of your github action -name: CI -# this will help you specify where to run -on: - push: - branches: - # this will run on the electron branch - - develop -# this is where the magic happens, each job happens in parallel btw -jobs: - build_on_mac: - runs-on: macOS-latest - steps: - - uses: actions/checkout@master - with: - ref: develop - - uses: actions/setup-node@master - with: - node-version: 16 - - name: see directory - run: ls - - build_on_win: - runs-on: windows-2016 - steps: - - uses: actions/checkout@master - with: - ref: develop - - uses: actions/setup-node@master - with: - node-version: 16 - - name: see directory - run: ls \ No newline at end of file