Skip to content

Commit

Permalink
Merge branch 'master' into buildingdirec
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteven4 authored Jan 24, 2025
2 parents 55bed3c + e9d6d4b commit aa3657b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,13 @@ jobs:
id-token: write
contents: write
attestations: write
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
- os: ubuntu-24.04-arm
outputs:
snap-file: ${{ steps.build-snap.outputs.snap }}
steps:
Expand Down
6 changes: 3 additions & 3 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: gpsbabel # you probably want to 'snapcraft register <name>'
base: core22 # the base snap is the execution environment for this snap
base: core24 # the base snap is the execution environment for this snap
version: '0.1' # just for humans, typically '1.2+git' or '1.3.2'
summary: "Convert, manipulate and transfer GPS data"
description: |
Expand Down Expand Up @@ -66,10 +66,10 @@ parts:
- pkg-config
- libudev-dev
- qt6-base-dev
- libqt6core5compat6-dev
- qt6-5compat-dev
stage-packages:
- zlib1g
- libshp2
- libshp4
- libusb-1.0-0
- libqt6core6
- libqt6core5compat6
2 changes: 1 addition & 1 deletion tools/uploadtool/upload_github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ echo "release_url: $release_url"
target_commit_sha=$(echo "$release_infos" | grep '"target_commitish":' | head -n 1 | cut -d '"' -f 4 | cut -d '{' -f 1)
echo "target_commit_sha: $target_commit_sha"

if [ "{$GITHUB_SHA}" != "$target_commit_sha" ] ; then
if [ "${GITHUB_SHA}" != "$target_commit_sha" ] ; then

echo "GITHUB_SHA != target_commit_sha, hence deleting $RELEASE_NAME..."

Expand Down

0 comments on commit aa3657b

Please sign in to comment.