Skip to content

v3.0.1

v3.0.1 #11

Workflow file for this run

name: Build Firmware
on:
workflow_dispatch:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: esp-idf build
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v4.4.2
target: esp32
path: '/'
- name: Pack
run: |
tar -czf rfmarkit-esp-node.tar.gz ./build/rfmarkit-esp-node.bin ./build/rfmarkit-esp-node.elf
- name: Upload
uses: actions/[email protected]
with:
name: rfmarkit-esp-node
path: rfmarkit-esp-node.tar.gz
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref }}
name: Release ${{ github.ref }}
body: TODO New Release.
draft: false
prerelease: false
files: |
./build/rfmarkit-esp-node.bin
rfmarkit-esp-node.tar.gz