I am trying to use your Github Action in a workflow, however I keep getting an empty error. From what I can see when it runs, the env are set correctly. How can I nail down the root cause when there is no error message?
uses: markdown-confluence/publish-action@v5
with:
confluenceBaseUrl: ${{ env.CONFLUENCE_BASE_URL }}
confluenceParentId: ${{ env.CONFLUENCE_PARENT_ID }}
atlassianUserName: ${{ env.ATLASSIAN_USERNAME }}
atlassianApiToken: ${{ secrets.ATLASSIAN_API_TOKEN }}
folderToPublish: "."
I am trying to use your Github Action in a workflow, however I keep getting an empty error. From what I can see when it runs, the env are set correctly. How can I nail down the root cause when there is no error message?