fixed aws_api_gateway_rest_api_policy definition #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to Confluence | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
container: | |
image: kovetskiy/mark:latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Publish Markdown to Confluence | |
run: mark -p ${{ secrets.ATLASSIAN_API_TOKEN }} | |
env: | |
MARK_CI: true | |
MARK_BASE_URL: https://devoteam.atlassian.net/wiki | |
MARK_USERNAME: ${{ secrets.ATLASSIAN_USERNAME }} | |
MARK_SPACE: DCG | |
MARK_FILES: "README.md" |