feat: Upgrade to comrak 0.54 with math_latex + alert_style options, and changed header_ids #209
Workflow file for this run
This file contains hidden or 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: Tag and Release | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "lib/commonmarker/version.rb" | |
| pull_request_target: | |
| types: | |
| - closed | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| id-token: write | |
| actions: write | |
| jobs: | |
| ruby: | |
| uses: gjtorikian/actions/.github/workflows/ruby_gem_release.yml@main | |
| secrets: | |
| gh_token: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| gem_name: commonmarker | |
| version_filepath: lib/commonmarker/version.rb | |
| oxidized: true | |
| include_musl: true | |
| prepare: ${{ github.event_name == 'push' }} | |
| release: ${{ github.event_name == 'workflow_dispatch' || ((github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'release'))) }} | |
| oidc_role_to_assume: rg_oidc_akr_evvsd78saan65yhjqtcm |