Skip to content

Added uninstaller, fixed counter. #49

Added uninstaller, fixed counter.

Added uninstaller, fixed counter. #49

Workflow file for this run

name: Build
on:
push:
tags:
- "*"
branches:
- main
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: |
chmod +x dist.sh
chmod +x build.sh
./dist.sh
- uses: actions/upload-artifact@v4
with:
name: zoom-platform
path: zoom-platform.sh
- name: Release if tag
if: github.ref_type == 'tag'
uses: ncipollo/release-action@v1
with:
artifacts: "zoom-platform.sh"
allowUpdates: true