From 3326619c94dc0f2e0401715ac1b887807c504a9e Mon Sep 17 00:00:00 2001 From: jorisdugue Date: Fri, 10 Jan 2025 13:45:11 +0100 Subject: [PATCH] feat(ci): remove deprecated stuff --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index eca4067..723b83b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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