This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
ping: send the usual number of payload bytes #252
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
on: [push, workflow_dispatch] | |
name: x86-64 CD Image | |
jobs: | |
build-image: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Clone Kuroko | |
uses: actions/checkout@v2 | |
with: | |
repository: kuroko-lang/kuroko | |
path: kuroko | |
- name: Checkout Kuroko | |
run: git submodule update --init kuroko | |
- name: Pull Builder Image | |
run: docker pull toaruos/build-tools:1.99.x | |
- name: Run Builder | |
run: docker run -v ${GITHUB_WORKSPACE}:/root/misaka -w /root/misaka -e LANG=C.UTF-8 -t toaruos/build-tools:1.99.x util/build-in-docker.sh | |
- name: Upload Branch Image | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build | |
path: | | |
image.iso | |
- name: Draft Release notes | |
if: startsWith(github.ref, 'refs/tags/v') | |
run: bash util/generate-release-notes.sh > notes.md | |
- name: Create Release | |
if: startsWith(github.ref, 'refs/tags/v') | |
uses: actions/create-release@v1 | |
id: create_release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ToaruOS ${{ github.ref }} | |
body_path: ./notes.md | |
draft: true | |
- name: Upload Release Image | |
if: startsWith(github.ref, 'refs/tags/v') | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./image.iso | |
asset_name: image.iso | |
asset_content_type: application/x-iso9660-image |