Release #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v*' | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: self-hosted | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Environment | |
run: echo "RELEASE_TITLE=$(date +'v%Y.%m.%d')" >> $GITHUB_ENV | |
- name: Build Image | |
run: docker build -f build/Dockerfile -t imbroglius/treble . | |
- name: Get Keys | |
uses: actions/checkout@v4 | |
with: | |
repository: imbroglius/vendor_daniel-priv | |
token: ${{ secrets.IMBROGLIOTOKEN }} | |
path: vendor_daniel-priv | |
- name: Build ROM | |
run: | | |
mkdir builds | |
docker run --rm \ | |
--privileged \ | |
--name treble \ | |
--volume ${{ github.workspace }}/builds:/root/builds \ | |
--volume ${{ github.workspace }}/vendor_daniel-priv:/aosp/vendor/daniel-priv \ | |
--volume ${{ github.workspace }}/config/ota.json:/aosp/treble_aosp/config/ota.json \ | |
imbroglius/treble treblebuild | |
- name: Upload OTA | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ota | |
path: config/ota.json | |
- name: Upload ROM | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: builds/*.xz | |
title: ${{ env.RELEASE_TITLE }} | |
tag_name: ${{ env.RELEASE_TITLE }} | |
body: "## Changelog\n- ...\n\n## Notes\n- ..." | |
draft: true | |
prerelease: false |