Mini10 RP1 #5
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: Mini10 Release Autobuilder | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build ISO | |
run: | | |
cmd.exe /c build.cmd | |
Write-Host((Get-Item Mini10.iso).length/1GB) | |
- name: Upload ISO to release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: "Mini10.iso" | |
body: | | |
This build is automatically generated by GitHub actions. To see what changed, see the last commit | |
Release pushed by: @${{ github.triggering_actor }}. | |
Build ID (click to see changes): ${{ github.sha }} | |
prerelease: false | |
tag_name: autobuild_${{ github.sha }} | |
name: ${{ github.event.head_commit.message }} | |
token: ${{ secrets.token }} |