Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dthomasngrokker committed Jan 26, 2025
1 parent 6f47698 commit c6f1db7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/snap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Build the snap # Build the snap for the specified architecture in the matrix strategy above and save the snap file path to an output
id: build-snap
run: |
snapcraft build --destructive-mode --build-for=${{ matrix.architecture }}
snapcraft --destructive-mode --target-arch=${{ matrix.architecture }}
SNAP_FILE=$(ls *.snap)
echo "snap=$SNAP_FILE" >> $GITHUB_ENV
echo "snap=$SNAP_FILE" >> $GITHUB_OUTPUT
Expand Down
6 changes: 5 additions & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ grade: stable
confinement: strict

architectures:
- build-on: [amd64, i386, armhf, arm64, s390x]
- build-on: amd64
- build-on: i386
- build-on: armhf
- build-on: arm64
- build-on: s390x

parts:
ngrok:
Expand Down

0 comments on commit c6f1db7

Please sign in to comment.