Skip to content

Commit

Permalink
chore: small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Dec 24, 2024
1 parent bd09083 commit 90ae318
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 33 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/windows.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
name: Build Windows
name: Build

on:
workflow_dispatch:
inputs:
os:
type: choice
description: Operating System
required: true
options:
- windows
- ubuntu
- macos

jobs:
build:

runs-on: windows-latest
runs-on: ${{ github.event.inputs.os }}-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -26,5 +35,5 @@ jobs:
npm run pack
- uses: actions/upload-artifact@v4
with:
name: windows
name: ${{ github.event.inputs.os }}
path: release/**/*.exe
30 changes: 0 additions & 30 deletions .github/workflows/macos.yml

This file was deleted.

0 comments on commit 90ae318

Please sign in to comment.