Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #10 from reecetech/copy-pasta
Browse files Browse the repository at this point in the history
Fix for typo'd output name
  • Loading branch information
ps-jay authored May 3, 2022
2 parents a0c4755 + 6e2c0d5 commit 84c8f89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pat_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ def print_outputs():
print(f"::add-mask::{PAT}") # mark the PAT as secret in GitHub Actions logs
print(f"::add-mask::{pat_encoded}") # mark the PAT as secret in GitHub Actions logs
print(f"::set-output name=username::{USERNAME}")
print(f"::set-output name=username::{username_encoded}")
print(f"::set-output name=username_encoded::{username_encoded}")
print(f"::set-output name=pat::{PAT}")
print(f"::set-output name=pat::{pat_encoded}")
print(f"::set-output name=pat_encoded::{pat_encoded}")
print(f"::set-output name=pat_id::{PAT_ID}")

# STATE_CLEANUP_PAT_ID will be used in the post action phase to automatically revoke the PAT
Expand Down

0 comments on commit 84c8f89

Please sign in to comment.