Skip to content

Commit

Permalink
chore: Merge pull request #26 from eventOneHQ/beta
Browse files Browse the repository at this point in the history
Release 1.3
  • Loading branch information
nprail authored Jun 21, 2020
2 parents d2c2fe7 + b2b87bb commit 9b8d120
Show file tree
Hide file tree
Showing 9 changed files with 2,601 additions and 1,528 deletions.
22 changes: 14 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- 'node'
- "node"
cache:
directories:
- ~/.npm
Expand All @@ -25,11 +25,17 @@ jobs:
- stage: release
node_js: lts/*
deploy:
provider: script
skip_cleanup: true
script: npx semantic-release
on:
branch: next
repo: eventOneHQ/apkup
- provider: script
skip_cleanup: true
script: npx semantic-release
on:
branch: next
repo: eventOneHQ/apkup
- provider: script
skip_cleanup: true
script: npx semantic-release
on:
branch: beta
repo: eventOneHQ/apkup
notifications:
email: false
email: false
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ Then use the CLI:
apkup \
--key api.json \
--apk /path/to/Package.apk \
--deobfuscation /path/to/mapping.txt \ # optional
--release-notes "en-US=lorem ipsum dolor" \
--obbs /path/to/Expansion.obb \ # optional
--obbs /path/to/Expansion2.obb # optional
Expand All @@ -71,7 +72,7 @@ import { Apkup } = from 'apkup';
// or commonjs
const { Apkup } = require('apkup');

const apkup = Apkup({
const apkup = new Apkup({
client_email: '',
private_key: ''
});
Expand Down
Loading

0 comments on commit 9b8d120

Please sign in to comment.