Merge branch '17.0-develop' of https://github.com/OpenG2P/openg2p-pro… #25
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 OpenG2P Packaging Workflow | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
trigger-packaging: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set variables | |
run: | | |
echo "BRANCH_NAME=$(echo ${{ github.ref }} | sed -e 's,.*/\(.*\),\1,')" >> $GITHUB_ENV | |
- name: Invoke workflow in another repo with inputs | |
uses: aurelien-baudet/workflow-dispatch@v2 | |
with: | |
token: ${{ secrets.GIT_PUSH_TOKEN }} | |
repo: OpenG2P/openg2p-packaging | |
workflow: OpenG2P Odoo Package Dockers build | |
input: "{\"packageName\": \"${{ env.BRANCH_NAME }}\"}" | |
ref: main |