Skip to content

Commit

Permalink
Fix input fetching of consumer_token (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzaremmal authored Aug 21, 2024
1 parent 978b8cd commit 4cb6c8c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "SDKMAN! Release Action"
author: "hamzaremmal"
description: "Release your sdk to SDKMAN! using GitHub Actions"
branding:
icon : arrow-up-circle
icon: arrow-up-circle
color: blue
inputs:
CONSUMER-KEY:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38140,7 +38140,7 @@ const axios = __nccwpck_require__(8757);

async function main() {
const consumer_key = core.getInput("CONSUMER-KEY");
const consumer_token = core.getInput("CONSUMER-KEY");
const consumer_token = core.getInput("CONSUMER-TOKEN");
const candidate = core.getInput("CANDIDATE");
const version = core.getInput("VERSION");
const platform = core.getInput("PLATFORM");
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const axios = require("axios");

async function main() {
const consumer_key = core.getInput("CONSUMER-KEY");
const consumer_token = core.getInput("CONSUMER-KEY");
const consumer_token = core.getInput("CONSUMER-TOKEN");
const candidate = core.getInput("CANDIDATE");
const version = core.getInput("VERSION");
const platform = core.getInput("PLATFORM");
Expand Down

0 comments on commit 4cb6c8c

Please sign in to comment.