25 lines
595 B
YAML
25 lines
595 B
YAML
name: arkdep_build
|
|
on:
|
|
workflow_dispatch:
|
|
#push:
|
|
# branches:
|
|
# - '**'
|
|
#schedule:
|
|
# - cron: '30 6 1 * *'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
EDITION: [apadana-kde]
|
|
steps:
|
|
- id: arkdep-build
|
|
uses: manjaro/arkdep-action@main
|
|
with:
|
|
edition: ${{ matrix.edition }}
|
|
arkdep-profiles-repo: "https://git.parchlinux.com/apadana/arkdep-variants.git"
|
|
s3-cfg: ${{ secrets.S3_CFG }}
|
|
s3-cdn77-bearer: ${{ secrets.S3_CDN77_BEARER }}
|
|
s3-cdn77-id: ${{ secrets.S3_CDN77_ID }}
|
|
|