Bump copyright date to 2024 and version to 1.5.2; update build.yml #19
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: Publish Build | |
on: | |
push: | |
branches: [ "main" ] | |
tags: '*' | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Pack into zip and create installer | |
run: npm run dist | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@master | |
with: | |
path: dist | |
publish-release: | |
if: contains(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@master | |
- name: Create release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "artifact/*-ia32-win.zip,artifact/*.exe" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |