Skip to content

trigger run

trigger run #11

Workflow file for this run

# name: Build & Publish
on:
# push:
# branches:
# - main
jobs:
build-app:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: "Check release doesn't exist"
run: |
VERSION=$(jq -r '.Version' com.teddi.g502-battery-monitor.sdPlugin/manifest.json)
RESPONSE=$(curl --silent "https://api.github.com/repos/${{ github.repository }}/releases/tags/v$VERSION")
MESSAGE=$(echo $RESPONSE | jq -r '.message')
if [ "$MESSAGE" != "Not Found" ]; then
echo "Release v$VERSION already exists, please update the version in manifest.json"
exit 1
fi
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- name: Build App
run: |
pnpm build