forked from MuhammedKalkan/OpenLens
-
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.
fix: sha256 for arm64 zip and remove debug code
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -40,9 +40,9 @@ jobs: | |
env ELECTRON_BUILDER_EXTRA_ARGS="--arm64 --x64" make build | ||
for file in dist/OpenLens-${{ env.LENS_VERSION }}-latest.*.dmg; do | ||
if [[ "$file" == *"arm64"* ]]; then | ||
echo cp "$file" releasefiles/OpenLens-${{ env.LENS_VERSION }}-arm64.dmg | ||
cp "$file" releasefiles/OpenLens-${{ env.LENS_VERSION }}-arm64.dmg | ||
else | ||
echo cp "$file" releasefiles/OpenLens-${{ env.LENS_VERSION }}.dmg | ||
cp "$file" releasefiles/OpenLens-${{ env.LENS_VERSION }}.dmg | ||
fi | ||
done | ||
for file in dist/OpenLens-${{ env.LENS_VERSION }}-latest.*.zip; do | ||
|
@@ -83,7 +83,7 @@ jobs: | |
lens/releasefiles/OpenLens-${{ env.LENS_VERSION }}.rpm | ||
lens/releasefiles/OpenLens-${{ env.LENS_VERSION }}*.zip | ||
lens/releasefiles/OpenLens-${{ env.LENS_VERSION }}.exe | ||
lens/releasefiles/OpenLens-${{ env.LENS_VERSION }}.*.sha256 | ||
lens/releasefiles/OpenLens-${{ env.LENS_VERSION }}*.sha256 | ||
- name: Latest | ||
uses: softprops/[email protected] | ||
with: | ||
|