whatsNew: Removed equal sign #159
Workflow file for this run
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: Trigger publish of docs.strongswan.org | |
on: | |
push: | |
branches: [master, docs-6.0] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: gh workflow run --repo strongswan/strongswan-antora publish.yml -f msg="$MSG $GITHUB_REPOSITORY@$SHA" | |
env: | |
GITHUB_TOKEN: ${{ secrets.PUBLISH_TOKEN }} | |
SHA: ${{ github.event.head_commit.id }} | |
MSG: ${{ github.event.head_commit.message }} |