add: async
This commit is contained in:
parent
b836447fac
commit
50f614060a
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -7,7 +7,7 @@ const getLatestVersion = require("./get-latest-version");
|
||||||
// most @actions toolkit packages have async methods
|
// most @actions toolkit packages have async methods
|
||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
getLatestVersion().then(function(latestVersion) {
|
getLatestVersion().then(async function(latestVersion) {
|
||||||
let hugoVersion = core.getInput("hugo-version");
|
let hugoVersion = core.getInput("hugo-version");
|
||||||
if (!hugoVersion || hugoVersion === "latest") {
|
if (!hugoVersion || hugoVersion === "latest") {
|
||||||
hugoVersion = latestVersion;
|
hugoVersion = latestVersion;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue