mirror of
https://github.com/ponces/treble_aosp.git
synced 2025-02-07 11:19:40 +00:00
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
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
|
|
- uses: webfactory/ssh-agent@v0.9.0
|
|
with:
|
|
ssh-private-key: ${{ secrets.VENDOR_PONCES_PRIV_KEY }}
|
|
|
|
- name: Setup Environment
|
|
run: echo "RELEASE_TITLE=$(date +'v%Y.%m.%d')" >> $GITHUB_ENV
|
|
|
|
- name: Build Image
|
|
run: docker build -f build/Dockerfile -t ponces/treble .
|
|
|
|
- name: Build ROM
|
|
run: |
|
|
mkdir builds
|
|
ssh-keyscan github.com > known_hosts
|
|
docker run --rm \
|
|
--privileged \
|
|
--name treble \
|
|
--env SSH_AUTH_SOCK=/ssh-agent \
|
|
--volume $SSH_AUTH_SOCK:/ssh-agent \
|
|
--volume ${{ github.workspace }}/known_hosts:/root/.ssh/known_hosts \
|
|
--volume ${{ github.workspace }}/builds:/root/builds \
|
|
--volume ${{ github.workspace }}/config/ota.json:/aosp/treble_aosp/config/ota.json \
|
|
ponces/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
|