Skip to content

Commit

Permalink
Use edition specific overlay-repos
Browse files Browse the repository at this point in the history
  • Loading branch information
erikinkinen committed Dec 10, 2021
1 parent c24da8a commit a4e20cb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/image_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ jobs:
uses: nanzm/get-time-action@v1.1
with:
format: 'YYYYMMDD'
-
id: check_overlay_repo
run: |
[[ $edition == 'plasma-mobile-dev' ]] && echo "::set-output name=overlay_repo::kde-unstable"
[[ $edition == 'nemomobile' ]] && echo "::set-output name=overlay_repo::https://img.nemomobile.net/manjaro/10.2021/devel/aarch64/nemomobile.db"
[[ $edition != 'plasma-mobile-dev' && $edition != 'nemomobile' ]] && echo "::set-output name=overlay_repo::"
true
env:
edition: ${{ matrix.edition }}
-
id: image-build
uses: erikinkinen/rootfs@master
Expand All @@ -58,7 +67,7 @@ jobs:
edition: ${{ matrix.edition }}
branch: ${{ matrix.branch }}
version: ${{ steps.time.outputs.time }}
overlay-repo: https://img.nemomobile.net/manjaro/10.2021/devel/aarch64/nemomobile.db
overlay-repo: ${{ steps.check_overlay_repo.outputs.overlay_repo }}
#CI_PUB_KEY: "${{ secrets.CI_PUB_KEY }}"
#CI_GPG_SECRET: "${{ secrets.CI_GPG_SECRET }}"
#CI_GPG_PASSPHRASE: "${{ secrets.CI_GPG_PASSPHRASE }}"
Expand Down

0 comments on commit a4e20cb

Please sign in to comment.