Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs:
build-macos:
name: Build macOS (electron-builder)
runs-on: macos-latest
if: ${{ !startsWith(github.head_ref, 'release/v') }}

steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +33,6 @@ jobs:
build-windows:
name: Build Windows (electron-builder)
runs-on: windows-latest
if: ${{ !startsWith(github.head_ref, 'release/v') }}

steps:
- uses: actions/checkout@v4
Expand All @@ -58,7 +56,6 @@ jobs:
build-linux:
name: Build Linux (electron-builder)
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'release/v') }}

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,14 @@ jobs:
name: Build
uses: ./.github/workflows/build.yml
needs: tests
if: ${{ !startsWith(github.head_ref, 'release/v') }}

release:
name: Release
uses: ./.github/workflows/release.yml
needs: tests
if: ${{ startsWith(github.head_ref, 'release/v') }}
permissions:
contents: write


3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
release-macos:
name: Publish macOS (electron-builder)
runs-on: macos-latest
if: ${{ startsWith(github.head_ref, 'release/v') }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -44,7 +43,6 @@ jobs:
release-windows:
name: Publish Windows (electron-builder)
runs-on: windows-latest
if: ${{ startsWith(github.head_ref, 'release/v') }}

steps:
- uses: actions/checkout@v4
Expand All @@ -71,7 +69,6 @@ jobs:
release-linux:
name: Publish Linux (electron-builder)
runs-on: ubuntu-latest
if: ${{ startsWith(github.head_ref, 'release/v') }}

steps:
- uses: actions/checkout@v4
Expand Down
Loading