Skip to content

Commit

Permalink
feat: store metadata file
Browse files Browse the repository at this point in the history
Signed-off-by: Ar Rakin <rakinar2@onesoftnet.eu.org>
  • Loading branch information
virtual-designer committed Aug 28, 2024
1 parent b494f04 commit 66b0beb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33389,6 +33389,7 @@ function run() {
const gitPushBranch = core.getInput("git-push-branch") || undefined;
const metadataFile = core.getInput("metadata-file");
core.info(`Metadata file: ${metadataFile}`);
console.log(github.context.payload);
let metadataFileJSON;
if (!(0, fs_1.existsSync)(metadataFile) || !createCommit) {
if (createCommit) {
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ async function run() {

core.info(`Metadata file: ${metadataFile}`);

console.log(github.context.payload);

let metadataFileJSON: {
lastReadCommit: string;
};
Expand Down

0 comments on commit 66b0beb

Please sign in to comment.