Skip to content

Commit

Permalink
Merge pull request #2 from teampanfu/circleci-project-setup
Browse files Browse the repository at this point in the history
Move to CircleCI
  • Loading branch information
Panfu.us Developers authored Nov 30, 2022
2 parents 8546e27 + 4270a46 commit 23a30ae
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2
jobs:
build_windows:
docker:
- image: electronuserland/builder:wine
steps:
- checkout
- run: yarn && yarn release --x64 --ia32 --linux --win

build_macos:
macos:
xcode: "14.0.0"
steps:
- checkout
- run: yarn && yarn release

workflows:
version: 2
build:
jobs:
- build_windows
- build_macos

0 comments on commit 23a30ae

Please sign in to comment.