Skip to content

Commit

Permalink
Updated python file
Browse files Browse the repository at this point in the history
  • Loading branch information
sohammohite committed Jun 23, 2024
1 parent ef0e5b8 commit adb668b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source-code/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const port = process.env.PORT || 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
const msg = 'Hello World!!!!\n'
const msg = 'Hello World!!\n'
res.end(msg);
});

Expand Down
4 changes: 3 additions & 1 deletion update_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
import yaml

token = os.environ.get('GIT_TOKEN')
github_sha = os.environ.get('GIT_SHA')
sha = os.environ.get('GITHUB_SHA')

github_sha = sha[0:7]

print(token)
auth = Auth.Token(str(token))
Expand Down

0 comments on commit adb668b

Please sign in to comment.