Skip to content

Commit

Permalink
feat(ci): remove deprecated stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdugue authored Jan 10, 2025
1 parent 60b3cdf commit 3326619
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
run: |
VERSION=$(cat composer.json | jq -r '.version')
echo "version=$VERSION" >> $GITHUB_ENV
echo "::set-output name=version::$VERSION"
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Check if tag exists
id: check_tag
run: |
TAG_EXISTS=$(git tag -l "${{ steps.get_version.outputs.version }}")
echo "tag_exists=$TAG_EXISTS" >> $GITHUB_ENV
echo "::set-output name=tag_exists::$TAG_EXISTS"
echo "tag_exists=$TAG_EXISTS" >> $GITHUB_OUTPUT
- name: Create GitHub Tag
if: steps.check_tag.outputs.tag_exists == ''
uses: actions/github-script@v7
Expand Down

0 comments on commit 3326619

Please sign in to comment.