Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
isaxk committed Aug 21, 2024
1 parent 47572ae commit 3ab367b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build/release

on:
push:
tags:
'*'

jobs:
release:
runs-on: macos-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v1

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 20.12.2


- name: Install Dependencies
run: npm install

- name: Build electron
run: npm run build && npm run pack:win && npm run pack:mac

- name: Build electron
run: ls dist

- name: Release with Notes
uses: softprops/action-gh-release@v1
with:
files: |
dist/ytdesk-universal-${{ github.ref_name }}.dmg
dist/ytdesk-x64-${{ github.ref_name }}-setup.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3ab367b

Please sign in to comment.