Skip to content

test

test #14

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
jobs:
build:
name: Build Release
runs-on: windows-latest
permissions:
contents: write
env:
# msbuild_path: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\MSBuild.exe
msvs_version: 2022
ELECTRON_CACHE: ${{ github.workspace }}/.cache/electron
ELECTRON_BUILDER_CACHE: ${{ github.workspace }}/.cache/electron-builder
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true
show-progress: false
# Get Tag For Release
- name: Get Tag
id: get_tag
shell: bash
run: echo "appVersion=${git describe --abbrev=0 --tags}" >> $GITHUB_OUTPUT && cat $GITHUB_OUTPUT