Skip to content

Commit

Permalink
Removed windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeV220 committed Jun 25, 2022
1 parent b75036d commit b275c0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 18 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,7 @@ jobs:
run: |
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install software-properties-common apt-transport-https wget -y
wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
sudo mv winehq-jammy.sources /etc/apt/sources.list.d/
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo mv winehq.key /usr/share/keyrings/winehq-archive.key
echo "APT::Get::Always-Include-Phased-Updates \"1\";" > sudo tee /etc/apt/apt.conf.d/99phased-updates
sudo apt update
sudo apt install --install-recommends wine-stable wine32
sudo apt install gnupg ca-certificates
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
sudo apt install mono-devel
sudo apt install --no-install-recommends -y libopenjp2-tools
sudo apt install --no-install-recommends -y rpm
sudo apt install --no-install-recommends -y libarchive-tools
Expand All @@ -71,9 +59,6 @@ jobs:
$file = Get-ChildItem -Path ./dist/artifacts/ -Filter "*.tar.gz" | select-object -first 1
$newName = "$($file.BaseName).$($sha)$($file.Extension)"
Rename-Item -Path $file.FullName -NewName $newName
$file = Get-ChildItem -Path ./dist/artifacts/ -Filter "*.exe" | select-object -first 1
$newName = "$($file.BaseName).$($sha)$($file.Extension)"
Rename-Item -Path $file.FullName -NewName $newName
$file = Get-ChildItem -Path ./dist/artifacts/ -Filter "*.deb" | select-object -first 1
$newName = "$($file.BaseName).$($sha)$($file.Extension)"
Rename-Item -Path $file.FullName -NewName $newName
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
"start:electron": "nodemon --exec \"yarn clean:main && yarn compile:main && run-electron build/main.js --inspect=5858\"",
"start:react": "cross-env BROWSER=none NODE_ENV=development node scripts/start.js",
"start": "concurrently \"yarn start:react\" \"wait-on http://localhost:3000 && yarn start:electron\"",
"dist:local": "cross-env yarn compile:main && electron-builder --win --linux deb tar.gz pacman rpm AppImage --x64 -p never",
"dist:local-dir": "cross-env yarn compile:main && electron-builder ---win --linux deb tar.gz pacman rpm AppImage --x64 -p never --dir",
"dist": "cross-env yarn compile:main && electron-builder --win --linux deb tar.gz pacman rpm AppImage --x64 -p always",
"dist:local": "cross-env yarn compile:main && electron-builder --linux deb tar.gz pacman rpm AppImage --x64 -p never",
"dist:local-dir": "cross-env yarn compile:main && electron-builder ---linux deb tar.gz pacman rpm AppImage --x64 -p never --dir",
"dist": "cross-env yarn compile:main && electron-builder --linux deb tar.gz pacman rpm AppImage --x64 -p always",
"build:react": "node scripts/build.js",
"build:local": "cross-env yarn build:react && yarn dist:local",
"build:local-dir": "cross-env yarn build:react && yarn dist:local-dir",
Expand Down

0 comments on commit b275c0f

Please sign in to comment.