Upgrade Theengs Gateway to 1.3.0 (#24) #106
Workflow file for this run
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
--- | |
name: Build | |
on: push # yamllint disable-line rule:truthy | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
platform: | |
- amd64 | |
- arm64 | |
- armhf | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure Qemu support | |
uses: docker/setup-qemu-action@v2 | |
- name: Build snap | |
uses: diddlesnaps/[email protected] | |
with: | |
architecture: ${{ matrix.platform }} | |
snapcraft-args: --verbose | |
id: snapcraft | |
# - name: Check snap for errors | |
# run: | | |
# sudo snap install review-tools | |
# snap-review ${{ steps.snapcraft.outputs.snap }} | |
# - name: Install snap | |
# run: sudo snap install --dangerous ${{ steps.snapcraft.outputs.snap }} | |
# if: matrix.platform == 'amd64' | |
- name: Save snap as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: snap | |
path: ${{ steps.snapcraft.outputs.snap }} |