-
Notifications
You must be signed in to change notification settings - Fork 1
94 lines (80 loc) · 3 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: Build Image
on:
push:
branches:
- "main"
workflow_dispatch:
repository_dispatch:
types: [client-release, firmware-release]
concurrency:
group: "build"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clear workspace
run: sudo rm -rf *
- name: Install Dependencies
run: |
sudo apt update
sudo apt -y --force-yes install coreutils p7zip-full qemu-user-static wget python3 python3-dev zip
- name: Checkout CustomPiOS
uses: actions/checkout@v3
with:
repository: "guysoft/CustomPiOS"
path: CustomPiOS
- name: Checkout Project Repository
uses: actions/checkout@v3
with:
path: repository
submodules: true
- name: Download Raspbian Image
run: |
cd repository/src/image
wget -c --trust-server-names 'https://downloads.raspberrypi.org/raspios_lite_armhf_latest'
- name: Update CustomPiOS Paths
run: |
cd repository/src
../../CustomPiOS/src/update-custompios-paths
- name: Force apt mirror to work around intermittent mirror hiccups
run: |
echo "OCTOPI_APTMIRROR=http://mirror.us.leaseweb.net/raspbian/raspbian" > repository/src/config.local
- name: Build Image
run: |
cd repository/src
sudo bash -x ./build_dist
- name: Copy output
id: copy
run: |
source repository/src/config
NOW=$(date +"%Y-%m-%d-%H%M")
IMAGE=openscan-$NOW
sudo mv repository/src/workspace/*.img $IMAGE.img
echo "::set-output name=image::$IMAGE"
- name: "Package the image"
id: package-image
uses: OctoPrint/actions/package-rpi-image@main
with:
image_path: "${{ steps.copy.outputs.image }}.img"
- name: "Generate rpi-imager.json snippet"
uses: OctoPrint/actions/rpi-imager-snippet@main
with:
name: "OpenScan"
description: "Raspberry OS images with the latest OpenScan software ready to boot on your RPi."
icon: "https://raw.githubusercontent.com/OpenScan-org/OpenScan3-Image/main/media/rpi-imager-OpenScan.png"
url: "https://github.com/OpenScan-org/OpenScan3-Image/releases/download/${{ steps.copy.outputs.image }}/${{ steps.copy.outputs.image }}.zip"
output: "rpi-imager.json"
image_sha256: ${{ steps.package-image.outputs.image_sha256 }}
image_size: ${{ steps.package-image.outputs.image_size }}
zip_sha256: ${{ steps.package-image.outputs.zip_sha256 }}
zip_size: ${{ steps.package-image.outputs.zip_size }}
- name: Publish relese
uses: Polectron/action-gh-release@v1
with:
tag_name: ${{ steps.copy.outputs.image }}
files: |
${{ steps.copy.outputs.image }}.zip
${{ steps.copy.outputs.image }}.zip.md5
${{ steps.copy.outputs.image }}.zip.sha256
rpi-imager.json