Skip to content

Commit

Permalink
_BASE64
Browse files Browse the repository at this point in the history
  • Loading branch information
afarchy committed Dec 11, 2024
1 parent ee41df1 commit 073a768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/activate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function Activate(): Promise<void> {
const serial = core.getInput('serial', { required: pro });

if (!username) {
const encodedUsername = env['UNITY_USERNAME'];
const encodedUsername = env['UNITY_USERNAME_BASE64'];
if (!encodedUsername) {
throw Error('Username is required for Unity License Activation!');
}
Expand All @@ -43,7 +43,7 @@ async function Activate(): Promise<void> {
}

if (!password) {
const encodedPassword = env['UNITY_PASSWORD'];
const encodedPassword = env['UNITY_PASSWORD_BASE64'];
if (!encodedPassword) {
throw Error('Password is required for Unity License Activation!');
}
Expand Down

0 comments on commit 073a768

Please sign in to comment.