Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lesharris authored Aug 25, 2022
1 parent 004e3d0 commit 29eddea
Showing 1 changed file with 27 additions and 10 deletions.
37 changes: 27 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,7 @@ jobs:
command: |
ninja package
mkdir -v /Users/distiller/project/artifacts
ls -lv /Users/distiller/project
ls -lv
cp /Users/distiller/project/dorito/build/Dorito.dmg /Users/distiller/project/artifacts/Dorito-mac-$CIRCLE_TAG.dmg
ls -lv /Users/distiller/project/dorito/build/Dorito.dmg
- persist_to_workspace:
root: .
Expand All @@ -143,18 +140,38 @@ jobs:
- store_artifacts:
path: artifacts

release:
executor: github-release/default
steps:
- attach_workspace:
at: .
- github-release/release:
tag: 'v$CIRCLE_TAG'
title: 'Dorito v$CIRCLE_TAG'
artefacts-folder: artifacts

workflows:
build:
Release Dorito:
jobs:
# - build-windows:
# filters:
# branches:
# ignore: /.*/
# tags:
# only: /.*/
- build-windows:
filters:
branches:
ignore: /.*/
tags:
only: /.*/
- build-macos:
filters:
branches:
ignore: /.*/
tags:
only: /.*/
- release:
requires:
- build-windows
- build-macos
context: github
filters:
branches:
ignore: /.*/
tags:
only: /.*/

0 comments on commit 29eddea

Please sign in to comment.