From da2ae937a93cf7a4375f472bcef64e49d8f95c61 Mon Sep 17 00:00:00 2001 From: Preston Date: Tue, 26 May 2020 23:15:10 -0400 Subject: [PATCH] Delete main.yml --- .github/workflows/main.yml | 31 ------------------------------- 1 file changed, 31 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 36baa4ff..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,31 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - - name: Check out Git repository - uses: actions/checkout@v1 - - name: Install Node.js, NPM and Yarn - uses: actions/setup-node@v1 - with: - node-version: 12 - - name: Electron Builder Action - uses: samuelmeuli/action-electron-builder@v1.5.0 - with: - # GitHub authentication token - github_token: ${{ secrets.github_token }}