Skip to content

Commit

Permalink
Merge pull request #100 from chatsen/master
Browse files Browse the repository at this point in the history
Fix the endpoint for flutter releases
  • Loading branch information
subosito committed Jun 2, 2021
2 parents 0600af6 + 1ced41a commit 5188e41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ exports.determineVersion = exports.getPlatform = exports.storageUrl = void 0;
const core = __importStar(__nccwpck_require__(2186));
const httpm = __importStar(__nccwpck_require__(9925));
const semver = __importStar(__nccwpck_require__(1383));
exports.storageUrl = 'https://storage.googleapis.com/flutter_infra/releases';
exports.storageUrl = 'https://storage.googleapis.com/flutter_infra_release/releases';
function getPlatform() {
const platform = process.platform;
if (platform == 'win32') {
Expand Down Expand Up @@ -8521,4 +8521,4 @@ module.exports = require("util");;
/******/ module.exports = __webpack_exports__;
/******/
/******/ })()
;
;
2 changes: 1 addition & 1 deletion src/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as httpm from '@actions/http-client';
import * as semver from 'semver';

export const storageUrl =
'https://storage.googleapis.com/flutter_infra/releases';
'https://storage.googleapis.com/flutter_infra_release/releases';

interface IFlutterData {
channel: string;
Expand Down

0 comments on commit 5188e41

Please sign in to comment.