Skip to content

Commit

Permalink
fix: sha256 for arm64 zip and remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
jkroepke committed Jul 31, 2022
1 parent 1c58acc commit d354f3e
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 @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit d354f3e

Please sign in to comment.