Skip to content

Fix InnoSetup config, try to fix AppImage #2 #40

Fix InnoSetup config, try to fix AppImage #2

Fix InnoSetup config, try to fix AppImage #2 #40

Workflow file for this run

name: Raspberry Pi build
on:
push:
branches:
- master
- next
- 'next*'
tags:
- 'v*'
jobs:
buildx:
name: Build with Buildx
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- run: git fetch --prune --unshallow --tags
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
platforms: linux/arm/v6
-
name: Build
id: build
run: |
mkdir build/
docker build -f Dockerfile.raspberrypi --platform linux/arm/v6 --target export -t build --output . .
ls -lah
- name: Archive artifacts (welle.io build dir)
if: always() && steps.build.outcome == 'failure'
uses: actions/upload-artifact@v2
with:
name: welle.io build dir
path: build/*
if-no-files-found: error