Skip to content

Commit

Permalink
Fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien-Chouteau committed Oct 12, 2020
1 parent 5d3b383 commit e3cd62b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
const core = __importStar(require("@actions/core"));
const tc = __importStar(require("@actions/tool-cache"));
const path = require("path");
const ver = "0.7";
const ver = "0.7.0";
const base_url = "https://github.com/alire-project/alire/releases/download/";
const linux_url = base_url + "v" + ver + "/alr-" + ver + "-bin-ubuntu-lts.zip";
const linux_url = base_url + "v" + ver + "/alr-" + ver + "-bin-linux.zip";
const darwin_url = base_url + "v" + ver + "/alr-" + ver + "-bin-macos.zip";
const win32_url = base_url + "v" + ver + "/alr-" + ver + "-bin-windows.zip";
function run() {
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import * as core from '@actions/core';
import * as tc from '@actions/tool-cache';
const path = require("path");

const ver="0.7"
const ver="0.7.0"
const base_url="https://github.com/alire-project/alire/releases/download/";
const linux_url = base_url + "v" + ver + "/alr-" + ver + "-bin-ubuntu-lts.zip";
const linux_url = base_url + "v" + ver + "/alr-" + ver + "-bin-linux.zip";
const darwin_url= base_url + "v" + ver + "/alr-" + ver + "-bin-macos.zip";
const win32_url = base_url + "v" + ver + "/alr-" + ver + "-bin-windows.zip";

Expand Down

0 comments on commit e3cd62b

Please sign in to comment.