This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
Build and release image #2
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 and release image | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build image | |
uses: CommonArch/[email protected] | |
- name: Upload built image | |
uses: actions/upload-artifact@v4 | |
with: | |
name: built-iso | |
path: ${{ github.workspace }}/image.squashfs | |
- name: Create tag | |
id: create_tag | |
run: | | |
export TAG=$(date +%Y.%m.%d) | |
echo "tag=${TAG}" >> $GITHUB_OUTPUT | |
echo $TAG | |
- name: Release image | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
${{ github.workspace }}/image.squashfs | |
tag_name: ${{ steps.create_tag.outputs.tag }} | |
name: blendOS-${{ steps.create_tag.outputs.tag }} - Release | |
draft: ${{ contains(github.event.head_commit.message, '[draft]') }} | |
prerelease: ${{ !contains(github.event.head_commit.message, '[draft]') }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |