-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (46 loc) · 1.31 KB
/
image_build_all.yaml
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
name: image_build_all
on:
workflow_dispatch:
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
runs-on: ubuntu-22.04
strategy:
matrix:
DEVICE: [om1]
EDITION: [gnome,kde-plasma,mate,minimal,sway,xfce]
BRANCH: [stable]
steps:
-
id: time
uses: boredland/[email protected]
with:
format: '23.MM'
-
id: image-build
uses: manjaro-arm/rootfs@master
with:
device: ${{ matrix.device }}
edition: ${{ matrix.edition }}
branch: ${{ matrix.branch }}
version: ${{ steps.time.outputs.time }}
#gpg-key: ${{ secrets.CI_GPG_SECRET }}
#gpg-passphrase: ${{ secrets.CI_GPG_PASSPHRASE }}
-
name: Release assets
uses: softprops/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.time.outputs.time }}
name: Release ${{ steps.time.outputs.time }}
draft: false
prerelease: false
files: |
${{ env.FILE_PATH }}
${{ env.FILE_SHA256 }}
${{ env.FILE_TORRENT }}
${{ env.FILE_PKG }}
#${{ env.FILE_SIG }}