v3.3.0b9 #63
Workflow file for this run
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: | |
tags: | |
- 'v3.*' | |
name: Upload Release Assets | |
env: | |
MAKEOPTS: -j2 | |
jobs: | |
upload_release: | |
name: Upload Release Assets | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check cache | |
id: check-cache | |
uses: actions/cache@v2 | |
with: | |
path: ${{ runner.tool_cache }}/gcc-arm-10-2020-q4 | |
key: gcc-arm-10-2020-q4 | |
- name: Download | |
if: steps.check-cache.outputs.cache-hit != 'true' | |
uses: dlech/arm-none-eabi-gcc@master | |
with: | |
release: '10-2020-q4' | |
directory: ${{ runner.tool_cache }}/gcc-arm-10-2020-q4 | |
- name: Add cross-compiler to path | |
run: echo ${{ runner.tool_cache }}/gcc-arm-10-2020-q4/bin >> $GITHUB_PATH | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Build firmware | |
run: | | |
make $MAKEOPTS -C micropython/mpy-cross | |
make $MAKEOPTS -C bricks/movehub | |
make $MAKEOPTS -C bricks/cityhub | |
make $MAKEOPTS -C bricks/technichub | |
make $MAKEOPTS -C bricks/primehub | |
make $MAKEOPTS -C bricks/essentialhub | |
- name: Get tag | |
run: echo "GITHUB_TAG=${GITHUB_REF#*refs/tags/}" >> $GITHUB_ENV | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: ${{ contains(env.GITHUB_TAG, 'a') || contains(env.GITHUB_TAG, 'b') || contains(env.GITHUB_TAG, 'c') }} | |
- name: Upload movehub firmware | |
id: upload-movehub | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./bricks/movehub/build/firmware.zip | |
asset_name: pybricks-movehub-${{ env.GITHUB_TAG }}.zip | |
asset_content_type: application/zip | |
- name: Upload cityhub firmware | |
id: upload-cityhub | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./bricks/cityhub/build/firmware.zip | |
asset_name: pybricks-cityhub-${{ env.GITHUB_TAG }}.zip | |
asset_content_type: application/zip | |
- name: Upload technichub firmware | |
id: upload-technichub | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./bricks/technichub/build/firmware.zip | |
asset_name: pybricks-technichub-${{ env.GITHUB_TAG }}.zip | |
asset_content_type: application/zip | |
- name: Upload primehub firmware | |
id: upload-primehub | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./bricks/primehub/build/firmware.zip | |
asset_name: pybricks-primehub-${{ env.GITHUB_TAG }}.zip | |
asset_content_type: application/zip | |
- name: Upload essentialhub firmware | |
id: upload-essentialhub | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./bricks/essentialhub/build/firmware.zip | |
asset_name: pybricks-essentialhub-${{ env.GITHUB_TAG }}.zip | |
asset_content_type: application/zip |