2021-09-25 20:00:36 +02:00
|
|
|
name: Build fw/hw/sw
|
2021-02-14 22:19:38 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-09-25 23:46:53 +02:00
|
|
|
branches:
|
|
|
|
- main
|
2021-02-14 22:19:38 +01:00
|
|
|
pull_request:
|
2021-09-25 23:46:53 +02:00
|
|
|
branches:
|
|
|
|
- main
|
2021-02-14 22:19:38 +01:00
|
|
|
release:
|
2021-09-25 23:46:53 +02:00
|
|
|
types:
|
|
|
|
- created
|
2021-02-14 22:19:38 +01:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
- name: Build script
|
2021-09-25 20:00:36 +02:00
|
|
|
run: ./build.sh
|
2021-02-14 22:19:38 +01:00
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: SummerCart64
|
2021-09-25 20:00:36 +02:00
|
|
|
path: SummerCart64.zip
|
2021-02-14 22:19:38 +01:00
|
|
|
|
|
|
|
- name: Get release
|
|
|
|
if: github.event_name == 'release' && github.event.action == 'created'
|
|
|
|
id: get_release
|
|
|
|
uses: bruceadams/get-release@v1.2.2
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
|
|
|
|
|
|
- name: Upload release asset
|
|
|
|
if: github.event_name == 'release' && github.event.action == 'created'
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.get_release.outputs.upload_url }}
|
|
|
|
asset_path: packages/SummerCart64.zip
|
|
|
|
asset_name: SummerCart64.zip
|
|
|
|
asset_content_type: application/zip
|