Skip to content

v1.0.4: Add semi-transparent background - now truly transparent! #4

v1.0.4: Add semi-transparent background - now truly transparent!

v1.0.4: Add semi-transparent background - now truly transparent! #4

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Build installers
run: npm run make
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: installers-${{ matrix.os }}
path: out/make/**/*
if-no-files-found: error
release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: artifacts/**/*
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}