Skip to content

Commit

Permalink
Xgo 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Sep 19, 2019
1 parent c0344ab commit 27df2ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/xgo.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
const workspace = process.env['GITHUB_WORKSPACE'] || '.';
const xgo_version = '0.3.1';
const xgo_version = '0.3.2';
const go_version = core.getInput('go_version');
const dest = core.getInput('dest');
const prefix = core.getInput('prefix');
Expand Down
2 changes: 1 addition & 1 deletion src/xgo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import * as exec from '@actions/exec';
async function run() {
try {
const workspace = process.env['GITHUB_WORKSPACE'] || '.';
const xgo_version = '0.3.1';
const xgo_version = '0.3.2';
const go_version = core.getInput('go_version');
const dest = core.getInput('dest');
const prefix = core.getInput('prefix');
Expand Down

0 comments on commit 27df2ef

Please sign in to comment.