Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
farosas authored Dec 1, 2021
1 parent aaf7b2c commit 526563b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: images for QEMU

on:
workflow_dispatch:
schedule:
- cron: '0 0 1 * *'
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
machine: [ppc_mac99, ppc64le_pseries]
steps:
- uses: actions/checkout@v2
- run: make qemu_${{matrix.machine}}_defconfig
- run: make
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "qemu_${{matrix.machine}}_latest"
prerelease: true
title: "latest ${{matrix.machine}}"
files: |
output/images/rootfs.ext2
output/images/start-qemu.sh
output/images/vmlinux

0 comments on commit 526563b

Please sign in to comment.