Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lthiery committed Jan 31, 2024
1 parent 53941eb commit da583a1
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/idl-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag=$(.github/scripts/idl-update.sh ${{ matrix.program }})
echo "tag=$tag" >> $GITHUB_OUTPUT
TAG=$(.github/scripts/idl-update.sh ${{ matrix.program }})
echo $TAG
echo "TAG=${TAG}" >> "$GITHUB_ENV"
# creates a pull request with the updated idl
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
if: steps.update-idls.tag != ''
if: steps.update-idls.TAG != ''
with:
commit-message: update idl ${{ steps.update-idls.tag }}
title: ${{ steps.update-idls.tag }} IDL
branch: update-idl-${{ steps.update-idls.tag }}
commit-message: update idl ${{ steps.update-idls.TAG }}
title: ${{ steps.update-idls.TAG }} IDL
branch: update-idl-${{ steps.update-idls.TAG }}

0 comments on commit da583a1

Please sign in to comment.