Skip to content

Commit

Permalink
Restore behavior of only building on branches and tags on Travis, and…
Browse files Browse the repository at this point in the history
… also restore original build commands that were commented out while working on optimizing the build and homebrew update process
  • Loading branch information
olabini committed Dec 8, 2021
1 parent 6ad8c63 commit 316b99c
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions .travis.yml
Expand Up @@ -2,9 +2,9 @@ os: osx
osx_image: xcode11.3
language: go

#branches:
# except:
# - main
branches:
except:
- main

git:
depth: false
Expand Down Expand Up @@ -59,18 +59,17 @@ install:
- make -C ci/ deps

script:
- echo hello from script
# - make -C ci/ clean-mac-bundle
# - make build-gui
# - make -C ci/ make-mac-bundle
# - make -C ci/ make-dmg
# - make -C ci/ make-gui-for-release
- make -C ci/ clean-mac-bundle
- make build-gui
- make -C ci/ make-mac-bundle
- make -C ci/ make-dmg
- make -C ci/ make-gui-for-release

# deploy:
# provider: releases
# api_key: $GH_DEPLOY_TOKEN
# file_glob: true
# file: release/*
# skip_cleanup: true
# on:
# tags: true
deploy:
provider: releases
api_key: $GH_DEPLOY_TOKEN
file_glob: true
file: release/*
skip_cleanup: true
on:
tags: true

0 comments on commit 316b99c

Please sign in to comment.