Skip to content

Commit

Permalink
Fix passing secrets across GH workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
muodov committed Nov 15, 2024
1 parent 0e2eb24 commit 43a1a0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ jobs:
needs: release
if: ${{ !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') }}
uses: ./.github/workflows/ddg-release.yml
secrets: inherit
with:
tag_name: ${{ needs.release.outputs.tag_name }}
2 changes: 1 addition & 1 deletion ci/asana-create-tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ asanaCreateTasks()
console.log(result.stdout);
})
.catch((e) => {
console.error('Failed to create asana tasks:', result.stdout);
console.error('Failed to create asana tasks:');
// The Asana API returns errors in e.value.errors. If that's undefined log whatever else we got
console.error(e.value?.errors || e);
process.exit(1);
Expand Down

0 comments on commit 43a1a0f

Please sign in to comment.