Skip to content

Commit d1073ea

Browse files
committed
Bump version to 1.3.0
1 parent a2e4ceb commit d1073ea

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

dist/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2506,7 +2506,10 @@ function run() {
25062506
break;
25072507
}
25082508
const current = yield get_version_1.getVersion();
2509-
if (current !== version) {
2509+
if (current === version) {
2510+
core.setOutput("version", version);
2511+
}
2512+
else {
25102513
core.error("Failed to setup requested swift version");
25112514
}
25122515
}
@@ -7700,6 +7703,7 @@ const semver = __importStar(__webpack_require__(876));
77007703
const core = __importStar(__webpack_require__(470));
77017704
const os_1 = __webpack_require__(316);
77027705
const AVAILABLE_VERSIONS = [
7706+
"5.3",
77037707
"5.2.4",
77047708
"5.2.2",
77057709
"5.2.1",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-swift",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "Set up GitHub Actions workflow with Swift support",
55
"private": true,
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)