Skip to content

Commit

Permalink
Fix output config (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju authored Sep 8, 2024
1 parent fed9d85 commit 272b738
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build-push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
git push origin $BRANCH_NAME
gh pr create --title "Automated build: Update version to ${{ steps.gitversion.outputs.semVer }}" --body "This PR updates the version to ${{ steps.gitversion.outputs.semVer }} and rebuilds the dist folder." --base main --head $BRANCH_NAME
)
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Create a release if on a release branch
- name: Create Release
Expand Down
2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function run() {
// Load the configuration
const workspacePath = process.env.GITHUB_WORKSPACE || '';
const config = loadConfig(workspacePath);
console.log('Config loaded:', config);
console.log('Config loaded:', JSON.stringify(config, null, 2));
core.debug(`Loaded config: ${JSON.stringify(config)}`);

const time = (new Date()).toTimeString();
Expand Down

0 comments on commit 272b738

Please sign in to comment.