forked from Chia-Network/chia-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update GUI back to main * Pin specific versions of electron-package and electron-osx-sign * Make sure ssh git urls actually use https * Update azure pipeline to use https instead of ssh for git * Update windows pipelines to use https instead of ssh * Fix messed up insteadOf rules on windows + azure mac pipeline
- Loading branch information
1 parent
7418142
commit 280cc7f
Showing
10 changed files
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,10 @@ jobs: | |
fetch-depth: 0 | ||
submodules: recursive | ||
|
||
- name: Set git urls to https instead of ssh | ||
run: | | ||
git config --global url."https://github.com/".insteadOf ssh://[email protected]/ | ||
- name: Get npm cache directory | ||
id: npm-cache | ||
run: | | ||
|
@@ -156,7 +160,6 @@ jobs: | |
name: Windows-Installers | ||
path: ${{ github.workspace }}\chia-blockchain-gui\release-builds\ | ||
|
||
|
||
- name: Install AWS CLI | ||
if: steps.check_secrets.outputs.HAS_AWS_SECRET | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,10 @@ steps: | |
fetchDepth: 0 | ||
displayName: "Checkout code" | ||
|
||
- script: | | ||
git config --global url."https://github.com/".insteadOf ssh://[email protected]/ | ||
displayName: "Use https for git instead of ssh" | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: "$(python.version)" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,11 @@ echo "Chia Installer Version is: $CHIA_INSTALLER_VERSION" | |
|
||
echo "Installing npm and electron packagers" | ||
npm install electron-installer-dmg -g | ||
npm install electron-packager -g | ||
npm install electron/electron-osx-sign -g | ||
# Pinning electron-packager and electron-osx-sign to known working versions | ||
# Current packager uses an old version of osx-sign, so if we install the newer sign package | ||
# things break | ||
npm install [email protected] -g | ||
npm install [email protected] -g | ||
npm install notarize-cli -g | ||
|
||
echo "Create dist/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,11 @@ echo "Chia Installer Version is: $CHIA_INSTALLER_VERSION" | |
|
||
echo "Installing npm and electron packagers" | ||
npm install electron-installer-dmg -g | ||
npm install electron-packager -g | ||
npm install electron/electron-osx-sign -g | ||
# Pinning electron-packager and electron-osx-sign to known working versions | ||
# Current packager uses an old version of osx-sign, so if we install the newer sign package | ||
# things break | ||
npm install [email protected] -g | ||
npm install [email protected] -g | ||
npm install notarize-cli -g | ||
|
||
echo "Create dist/" | ||
|