Skip to content

Release 2.21.2 (#140) #66

Release 2.21.2 (#140)

Release 2.21.2 (#140) #66

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build Release Zip
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
tags:
- "v*.*.*"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Build Zip
id: build-zip
run: |
mkdir "flowforge-installer"
cp -R app bin broker etc var install.* LICENSE README.md "flowforge-installer"
zip -r "flowforge-installer.zip" "flowforge-installer"
mkdir "flowfuse-installer"
cp -R app bin broker etc var install.* LICENSE README.md "flowfuse-installer"
zip -r "flowfuse-installer.zip" "flowfuse-installer"
- name: Show Env
run: env
- name: Release
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3
with:
files: |
flowforge-installer.zip
flowfuse-installer.zip