Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
staniel359 committed Jan 28, 2024
1 parent e94ee41 commit c87f926
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ jobs:
ELECTRON_BUILDER_CACHE: ${{ github.workspace }}/.cache/electron-builder
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
if ( '${{ runner.os }}' == 'Windows' ); then
if ([ ${{ runner.os }} == 'Windows' ]); then
yarn release --win
elif ( '${{ runner.os }}' == 'macOS' ); then
elif ([ ${{ runner.os }} == 'macOS' ]); then
yarn release --mac
elif ( '${{ runner.os }}' == 'Linux' ); then
elif ([ ${{ runner.os }} == 'Linux' ]); then
sudo apt install flatpak flatpak-builder libarchive-tools rpm -y
flatpak remote-add --if-not-exists --user flathub https://flathub.org/repo/flathub.flatpakrepo
yarn release --linux
Expand Down

0 comments on commit c87f926

Please sign in to comment.