Skip to content

image_build_all-dev #52

image_build_all-dev

image_build_all-dev #52

name: image_build_all-dev
on:
workflow_dispatch:
schedule:
- cron: '30 2 * 1 *'
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
runs-on: ubuntu-22.04
strategy:
matrix:
DEVICE: [opi3b]
EDITION: [gnome,kde-plasma,minimal,xfce]
BRANCH: [unstable]
steps:
-
id: time
uses: boredland/[email protected]
with:
format: 'YYYYMMDD'
-
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: Dev ${{ steps.time.outputs.time }}
draft: false
prerelease: true
files: |
${{ env.FILE_PATH }}
${{ env.FILE_SHA256 }}
${{ env.FILE_TORRENT }}
${{ env.FILE_PKG }}
#${{ env.FILE_SIG }}