Skip to content

Commit

Permalink
ci: Add arm flatpak
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Sep 2, 2024
1 parent 27f016a commit dfe1a9a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,16 @@ jobs:

deploy-flatpak:
needs: test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
suffix: linux

- os: ubuntu-24-arm
suffix: linux-arm

steps:
- name: Checkout
Expand Down Expand Up @@ -178,7 +187,7 @@ jobs:
- name: Build name
if: "!startsWith(github.ref, 'refs/tags/') && success()"
run: |
mv dist/Cockpit*.flatpak dist/Cockpit-linux-$(git describe --tags).flatpak
mv dist/Cockpit*.flatpak dist/Cockpit-${{ matrix.suffix }}-$(git describe --tags).flatpak
- name: Upload Artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit dfe1a9a

Please sign in to comment.