Skip to content

Commit

Permalink
ci: Switch to keeping armv7 as the armhf .deb
Browse files Browse the repository at this point in the history
  • Loading branch information
francislavoie authored Dec 30, 2020
1 parent 3821319 commit b1bba92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
run: |
for filename in dist/*.deb; do
# armv6 and armv7 are both "armhf" so we can skip the duplicate
if [[ "$filename" == *"armv7"* ]]; then
if [[ "$filename" == *"armv6"* ]]; then
echo "Skipping $filename"
continue
fi
Expand All @@ -117,7 +117,7 @@ jobs:
run: |
for filename in dist/*.deb; do
# armv6 and armv7 are both "armhf" so we can skip the duplicate
if [[ "$filename" == *"armv7"* ]]; then
if [[ "$filename" == *"armv6"* ]]; then
echo "Skipping $filename"
continue
fi
Expand All @@ -135,7 +135,7 @@ jobs:
run: |
for filename in dist/*.deb; do
# armv6 and armv7 are both "armhf" so we can skip the duplicate
if [[ "$filename" == *"armv7"* ]]; then
if [[ "$filename" == *"armv6"* ]]; then
echo "Skipping $filename"
continue
fi
Expand Down

0 comments on commit b1bba92

Please sign in to comment.