Skip to content

Commit

Permalink
Test: specified multiple publish workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
villyes-ledger committed Oct 2, 2024
1 parent 42b480c commit e9f00b4
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish_attest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish to Confluence
on: push

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20

- name: Publish Markdown to Confluence
uses: markdown-confluence/publish-action@v5
with:
confluenceBaseUrl: https://ledgerhq.atlassian.net/
confluenceParentId: 5036769289
atlassianUserName: ${{ secrets.ATLASSIAN_USERNAME }}
atlassianApiToken: ${{ secrets.ATLASSIAN_API_TOKEN }}
folderToPublish: .
contentRoot: actions/attest/
#configFile: .markdown-confluence.json
22 changes: 22 additions & 0 deletions .github/workflows/publish_jfrog_login.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish to Confluence
on: push

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20

- name: Publish Markdown to Confluence
uses: markdown-confluence/publish-action@v5
with:
confluenceBaseUrl: https://ledgerhq.atlassian.net/
confluenceParentId: 5036769289
atlassianUserName: ${{ secrets.ATLASSIAN_USERNAME }}
atlassianApiToken: ${{ secrets.ATLASSIAN_API_TOKEN }}
folderToPublish: .
contentRoot: actions/jfrog-login/
#configFile: .markdown-confluence.json

0 comments on commit e9f00b4

Please sign in to comment.