-
-
Notifications
You must be signed in to change notification settings - Fork 17
168 lines (146 loc) · 4.97 KB
/
Copy pathgenerate_binaries.yml
File metadata and controls
168 lines (146 loc) · 4.97 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
name: Binaries generation
on:
push:
workflow_dispatch:
permissions:
contents: write
packages: read
jobs:
build-linux:
name: Build (Linux targets) - ${{ matrix.target.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- name: Linux
image: ghcr.io/yadoms/build_for_linux:latest
artifact_prefix: Linux
privileged: ""
- name: RaspberryPI (all versions)
image: ghcr.io/yadoms/build_for_raspberrypi:latest
artifact_prefix: RaspberryPI
privileged: "--privileged"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to GitHub Container Repository (GHCR)
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Yadoms build script
uses: Yadoms/build-yadoms-action@v4.0.3-beta.2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
buildImage: ${{ matrix.target.image }}
privileged: ${{ matrix.target.privileged }}
- name: Archive binaries
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target.artifact_prefix }}-Binaries
path: ./bin-${{ matrix.target.artifact_prefix }}/package/Yadoms*
- name: Archive update packages
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target.artifact_prefix }}-Update
path: ./bin-${{ matrix.target.artifact_prefix }}/package/update*
- name: Cleanup Docker credentials
if: always()
run: |
docker logout ghcr.io || true
rm -f ~/.docker/config.json
# build-windows:
# name: Build (Windows)
# runs-on: windows-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Login to GitHub Container Repository (GHCR)
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# - name: Yadoms build script
# uses: Yadoms/build-yadoms-windows-action@v2.0.2
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# buildImage: ghcr.io/yadoms/build_for_windows:latest
# entrypoint: "powershell.exe -Command C:\\work\\build-scripts\\windows\\entrypoint_docker.ps1" #TODO utile ?
# - name: Archive binaries
# uses: actions/upload-artifact@v4
# with:
# name: Windows-Binaries
# path: ./bin-windows/package/Yadoms*
# - name: Archive update packages
# uses: actions/upload-artifact@v4
# with:
# name: Windows-Update
# path: ./bin-windows/package/update*
# - name: Cleanup Docker credentials
# if: always()
# shell: powershell
# run: |
# docker logout ghcr.io 2>$null
# Remove-Item "$env:USERPROFILE\.docker\config.json" -Force -ErrorAction SilentlyContinue
# rpi-image:
# name: RaspberryPI image - ${{ matrix.language.label }}
# runs-on: ubuntu-latest
# needs: build-linux
# strategy:
# fail-fast: false
# matrix:
# language:
# - lang: fr
# label: FR
# - lang: en
# label: EN
# steps:
# - name: Download RaspberryPI binaries
# uses: actions/download-artifact@v4
# with:
# name: RaspberryPI-Binaries
# path: ./
# - name: Build RaspberryPI image (${{ matrix.language.label }})
# uses: Yadoms/build-yadoms-rpiimage-action@v1.0.1
# with:
# output_folder: $GITHUB_WORKSPACE/bin-RaspberryPI/pi_image
# language: ${{ matrix.language.lang }}
# branch_or_tag_name: 2020-12-02-raspbian-buster
# - name: Archive RPi image (${{ matrix.language.label }})
# uses: actions/upload-artifact@v4
# with:
# name: Raspbian-Lite-${{ matrix.language.label }}-Yadoms-Image
# path: ./bin-RaspberryPI/pi_image/*.zip
release:
name: Create/Update Release (tag only)
runs-on: ubuntu-latest
needs:
- build-linux
# - build-windows
# - rpi-image
if: github.ref_type == 'tag'
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Create or update GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
name: ${{ github.ref_name }}
draft: true
prerelease: true
allowUpdates: true
omitNameDuringUpdate: true
replacesArtifacts: true
artifacts: "dist/**"
token: ${{ secrets.GITHUB_TOKEN }}