Skip to content

Commit

Permalink
revert back to old CI release method
Browse files Browse the repository at this point in the history
  • Loading branch information
Jazcash committed Feb 28, 2023
1 parent e9be51b commit 416dd0a
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,14 @@
name: Build

on:
push:
pull_request:
workflow_dispatch:
inputs:
release:
description: "Release"
required: true
default: false
type: boolean
on: [push, pull_request]

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [windows-latest, ubuntu-latest]
node-version: [14]

steps:
- name: Check out Git repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -48,4 +37,4 @@ jobs:
with:
github_token: ${{ secrets.github_token }}
args: "--config .electron-builder.config.js"
release: ${{ inputs.release || false }}
release: ${{ startsWith(github.ref, 'refs/tags/v') }}

0 comments on commit 416dd0a

Please sign in to comment.