Skip to content

Merge pull request #44 from klejejs/chore/improve-debug-command-and-a… #5

Merge pull request #44 from klejejs/chore/improve-debug-command-and-a…

Merge pull request #44 from klejejs/chore/improve-debug-command-and-a… #5

Workflow file for this run

name: Package assets
on:
push:
tags:
- "*"
jobs:
build:
name: Publish binaries
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Zip release assets
run: zip -r thermia.zip ThermiaOnlineAPI
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: thermia.zip
asset_name: thermia.zip
tag: ${{ github.ref }}
overwrite: true