Skip to content

Commit

Permalink
trying to remove the warnings from the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Oct 24, 2023
1 parent 33a20d0 commit bb38ba1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
- id: setup-zephir-ext
name: Setup Zephir Extensions
run: |
echo "::set-output name=extensions::zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}"
# echo "::set-output name=extensions::zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}"
echo "{extensions}=zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}" >> $GITHUB_STATE


# PHP CodeSniffer inspection
phpcs:
Expand Down Expand Up @@ -179,7 +181,8 @@ jobs:
} else {
$PhalconExtPath = "$(php-config --extension-dir)/phalcon.so"
}
echo "::set-output name=extension-path::$PhalconExtPath"
# echo "::set-output name=extension-path::$PhalconExtPath"
echo "{extension-path}=$PhalconExtPath" >> $GITHUB_STATE

- name: Creates build artifact with Phalcon extension
uses: ./.github/actions/pack-phalcon-ext
Expand Down Expand Up @@ -387,7 +390,8 @@ jobs:
- name: Get the release version
id: get-version
run: |
echo ::set-output name=version::${GITHUB_REF#refs/tags/}
# echo ::set-output name=version::${GITHUB_REF#refs/tags/}
echo "{version}=${GITHUB_REF#refs/tags/}" >> $GITHUB_STATE

- name: Download Phalcon build artifacts
id: download
Expand Down

0 comments on commit bb38ba1

Please sign in to comment.