Skip to content

Commit

Permalink
[Prerelease] Bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
George committed Jun 19, 2018
1 parent 53835a0 commit f1df1e5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env-sample
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GITHUB_AUTH_KEY=
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
.env
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ gulp.task('changelog', function () {
.pipe(gulp.dest('./'));
});

// Ensure you duplicated the .env-sample and set your own GitHub token and renamed it .env
gulp.task('github-release', function(done) {
conventionalGithubReleaser({
type: "oauth",
token: '0126af95c0e2d9b0a7c78738c4c00a860b04acc8' // change this to your own GitHub token or use an environment variable
token: process.env.GITHUB_AUTH_KEY
}, {
preset: 'atom'
}, done);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Focus",
"version": "1.0.7",
"version": "1.0.8",
"devDependencies": {
"conventional-github-releaser": "^3.1.2",
"gulp": "^3.9.1",
Expand Down

0 comments on commit f1df1e5

Please sign in to comment.