-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix order of steps in release workflow, remove redundant ts-node depe…
…ndency
- Loading branch information
Showing
2 changed files
with
12 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,18 +38,6 @@ jobs: | |
id: version | ||
shell: bash | ||
|
||
- name: Retrieve appId | ||
run: | | ||
echo "APP_ID=$(node ./scripts/read-app-id.js)" >> $GITHUB_OUTPUT | ||
id: appId | ||
shell: bash | ||
|
||
- name: Retrieve whether Windows code signing should be attempted | ||
run: | | ||
echo "WINDOWS_CODE_SIGNING=$(node ./scripts/read-windows-code-signing.js)" >> $GITHUB_OUTPUT | ||
id: shouldWindowsCodeSign | ||
shell: bash | ||
|
||
- name: install Rust | ||
uses: dtolnay/[email protected] | ||
|
||
|
@@ -71,6 +59,18 @@ jobs: | |
curl -f -L --output ./pouch/kando.webhapp https://github.com/holochain-apps/kando/releases/download/v0.10.9/kando.webhapp | ||
node ./scripts/overwrite-with-test-name.js | ||
- name: Retrieve appId | ||
run: | | ||
echo "APP_ID=$(node ./scripts/read-app-id.js)" >> $GITHUB_OUTPUT | ||
id: appId | ||
shell: bash | ||
|
||
- name: Retrieve whether Windows code signing should be attempted | ||
run: | | ||
echo "WINDOWS_CODE_SIGNING=$(node ./scripts/read-windows-code-signing.js)" >> $GITHUB_OUTPUT | ||
id: shouldWindowsCodeSign | ||
shell: bash | ||
|
||
- name: build and upload the app (macOS arm64) | ||
if: matrix.platform == 'macos-latest' | ||
env: | ||
|
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