Skip to content

Fix build names PlusPlug(s) #19

Fix build names PlusPlug(s)

Fix build names PlusPlug(s) #19

Workflow file for this run

name: Shelly to Tasmota OTA convert
on:
workflow_dispatch: # Manually start a workflow
push:
tags: ["v*.*.*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build firmware
run: bash ./build-zip.sh
- name: Display files
run: ls -R ./*
- name: setenv release tag
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Release
uses: jason2866/action-gh-release@v1.2
with:
tag_name: ${{ env.RELEASE_VERSION }}
files: ./output/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}