ensure version is in the version env #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
run_install: true | |
- name: Build App | |
run: | | |
pnpm build | |
# Zip up the build artifact | |
- name: "Zip up the build artifact" | |
run: | | |
zip -r com.teddi.g502-battery-monitor.sdPlugin.zip com.teddi.g502-battery-monitor.sdPlugin | |
# Testing for the publish step | |
- name: "Publish to GitHub" | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
com.teddi.g502-battery-monitor.sdPlugin.zip | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: "v${{ steps.version.outputs.version }}" | |
body: "Release v${{ steps.version.outputs.version }}" | |
draft: false | |
prerelease: false |