Skip to content

Release 1.2

Release 1.2 #7

Workflow file for this run

name: Release Build
# Controls when the workflow will run
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run a one-line script
run: rm -f ShellyPro4PM.tapp; zip -j -0 ShellyPro4PM.tapp src/*
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
name: ShellyPro4PM.tapp
path: ShellyPro4PM.tapp
retention-days: 90