fix: Resolve bug that prevented nested dict fields in object lists fr… #145
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 Wiki | ||
on: | ||
push: | ||
branches: [main] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Generate App Installation Token | ||
id: generate_token | ||
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 # pin@v1 | ||
with: | ||
app_id: ${{ secrets.CLI_RELEASE_APP_ID }} | ||
private_key: ${{ secrets.CLI_RELEASE_PRIVATE_KEY }} | ||
repository: linode/linode-cli | ||
- name: Upload Documentation to Wiki | ||
uses: SwiftDocOrg/github-wiki-publish-action@v1 | ||
with: | ||
path: "wiki" | ||
env: | ||
GH_PERSONAL_ACCESS_TOKEN: ${{ steps.generate_token.outputs.token }} |