fix: prepare to convert MonsterPi for 1.5.0-rc2 dist install #248
Workflow file for this run
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: Build Image | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- '**' | |
- '!release/*' | |
paths: | |
- 'src/*' | |
- '.github/workflows/build.yaml' | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Dependencies | |
run: | | |
sudo apt update | |
sudo apt install coreutils p7zip-full qemu-user-static | |
- name: Checkout CustomPiOS | |
uses: actions/[email protected] | |
with: | |
repository: 'guysoft/CustomPiOS' | |
path: CustomPiOS | |
- name: Checkout Project Repository | |
uses: actions/[email protected] | |
with: | |
path: repository | |
submodules: true | |
# wget -c --trust-server-names 'https://cdimage.ubuntu.com/releases/22.04/release/ubuntu-22.04.2-preinstalled-server-arm64+raspi.img.xz' | |
- name: Download Raspbian or Ubuntu Image | |
run: | | |
cd repository/src/image | |
wget -c --trust-server-names 'https://cdimage.ubuntu.com/releases/20.04/release/ubuntu-20.04.5-preinstalled-server-arm64+raspi.img.xz' | |
- name: Update CustomPiOS Paths | |
run: | | |
cd repository/src | |
../../CustomPiOS/src/update-custompios-paths | |
- name: Set nightly image version | |
if: github.event_name == 'schedule' | |
run: | | |
source repository/src/config | |
NOW=$(date +"%Y-%m-%d") | |
echo "DIST_VERSION=$DIST_VERSION-$NOW-nightly" > repository/src/config.local | |
- name: Build Image | |
run: | | |
sudo modprobe loop | |
cd repository/src | |
sudo bash -x ./build_dist | |
- name: Copy output | |
id: copy | |
run: | | |
source repository/src/config | |
NOW=$(date +"%Y-%m-%d") | |
IMAGE=monsterpi-$DIST_VERSION-$NOW-nightly | |
cp repository/src/workspace/*.img $IMAGE.img | |
echo "::set-output name=image::$IMAGE" | |
- name: Zip Image | |
if: github.event_name == 'schedule' | |
run: | | |
zip ${{ steps.copy.outputs.image }}.zip ${{ steps.copy.outputs.image }}.img | |
- name: Create release | |
uses: actions/create-release@v1 | |
id: create_release | |
with: | |
draft: ${{ github.ref_name == 'develop' }} | |
prerelease: ${{ contains(env.SERVER_VERSION, 'rc') || contains(env.SERVER_VERSION, 'unstable') }} | |
tag_name: ${{ env.RELEASE_TAG }} | |
release_name: MonsterPi ${{ env.RELEASE_TAG }} | |
body: "Release notes not added" # ${{ steps.build_changelog.outputs.changelog }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Upload server bundle zip | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ${{ steps.copy.outputs.image }}.zip | |
asset_name: ${{ steps.copy.outputs.image }}.zip | |
asset_content_type: application/zip |