Skip to content

Commit

Permalink
FIX: CI (#2042)
Browse files Browse the repository at this point in the history
* Update electron.yaml

* FIX: typo
  • Loading branch information
NeoPlays authored Sep 10, 2024
1 parent 67520e2 commit 571988a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/electron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
shell: bash
if: ${{ !contains(github.event.head_commit.message, '[NOCI]') && matrix.os == 'ubuntu-latest' }}
- name: Upload artifacts for ubuntu-latest
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: app-${{ matrix.os }}
path: |
Expand All @@ -105,7 +105,7 @@ jobs:
shell: bash
if: ${{ !contains(github.event.head_commit.message, '[NOCI]') && matrix.os == 'windows-latest' }}
- name: Upload artifacts for windows-latest
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: app-${{ matrix.os }}
path: |
Expand All @@ -123,7 +123,7 @@ jobs:
shell: bash
if: ${{ !contains(github.event.head_commit.message, '[NOCI]') && matrix.os == 'macos-latest' }}
- name: Upload artifacts for macos-latest
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: app-${{ matrix.os }}
path: |
Expand Down Expand Up @@ -162,19 +162,19 @@ jobs:
shell: bash

- name: Download ubuntu binary from build into dist
uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b
uses: actions/download-artifact@v4
with:
name: app-ubuntu-latest
path: dist
if: ${{ !contains(github.event.head_commit.message, '[NOCI]') }}
- name: Download windows binary from build into dist
uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b
uses: actions/download-artifact@v4
with:
name: app-windows-latest
path: dist
if: ${{ !contains(github.event.head_commit.message, '[NOCI]') }}
- name: Download macos binary from build into dist
uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b
uses: actions/download-artifact@v4
with:
name: app-macos-latest
path: dist
Expand Down

0 comments on commit 571988a

Please sign in to comment.