Skip to content

Commit

Permalink
1.0.0 🎉 ! Clean .travis.yml, stop building Windows on CI
Browse files Browse the repository at this point in the history
Build Windows locally because of signing issues
  • Loading branch information
khrj committed Aug 30, 2020
1 parent 2e2bb9a commit fac9232
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ node_js:
os:
- osx
- linux
- windows

before_install:
- if [ "$TRAVIS_OS_NAME" = "windows" ] || [ "$TRAVIS_OS_NAME" = "linux" ]; then unset CSC_KEY_PASSWORD CSC_LINK; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then unset CSC_KEY_PASSWORD CSC_LINK; fi

script:
- |
Expand All @@ -53,9 +52,10 @@ addons:

deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable
token: $GITHUB_TOKEN
strategy: git
local_dir: website
skip_cleanup: true
on:
branch: main
condition: $TRAVIS_OS_NAME = linux
condition: $TRAVIS_OS_NAME = linux
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@
"dist": "electron-builder",
"start": "electron ."
},
"version": "0.9.10"
"version": "1.0.0"
}

0 comments on commit fac9232

Please sign in to comment.