Skip to content

Commit

Permalink
Merge pull request #16504 from phalcon/5.0.x
Browse files Browse the repository at this point in the history
5.6.0 Release
  • Loading branch information
niden committed Jan 9, 2024
2 parents 33fb1ca + feaa3de commit a9f537a
Show file tree
Hide file tree
Showing 58 changed files with 163,461 additions and 181,193 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build-phalcon-win/action.yml
Expand Up @@ -74,15 +74,15 @@ runs:
cache_dir: ${{ env.CACHE_DIR }}

- name: Configure Developer Command Prompt for MSVC compiler
uses: ilammy/msvc-dev-cmd@v1.10.0
uses: ilammy/msvc-dev-cmd@v1.12.1
with:
arch: ${{ inputs.arch }}

# Workaround for
# PHP Warning: PHP Startup: Can't load module 'C:\tools\php\ext\php_zephir_parser.dll'
# as it's linked with 14.29, but the core is linked with 14.16 in Unknown on line 0
- name: Configure Developer Command Prompt for MSVC compiler
uses: ilammy/msvc-dev-cmd@v1.10.0
uses: ilammy/msvc-dev-cmd@v1.12.1
if: ${{ inputs.php_version }} == '7.4'
with:
arch: ${{ inputs.arch }}
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
Expand Up @@ -19,7 +19,7 @@ on:

env:
# All versions should be declared here
PHALCON_VERSION: 5.5.0
PHALCON_VERSION: 5.6.0
ZEPHIR_PARSER_VERSION: 1.6.0

# For tests
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Download Phalcon Pecl Package
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: phalcon-pecl
path: ./phalcon-pecl
Expand Down Expand Up @@ -386,12 +386,13 @@ jobs:
- name: Get the release version
id: get-version
run: |
echo ::set-output name=version::${GITHUB_REF#refs/tags/}
echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
# echo ::set-output name=version::${GITHUB_REF#refs/tags/}
# echo "version=${GITHUB_REF#refs/tags/}" >> "$GITHUB_ENV" # This needs to be checked

- name: Download Phalcon build artifacts
id: download
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: ./build-artifacts

Expand All @@ -407,8 +408,8 @@ jobs:
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ steps.get-version.outputs.version }}
tag: ${{ steps.get-version.outputs.version }}
name: ${{ env.version }}
tag: ${{ env.version }}
bodyFile: "./build-artifacts/release/release-notes.md"
allowUpdates: true
artifacts: "./build-artifacts/release/*.zip,./build-artifacts/release/*.tgz"
Expand Down

0 comments on commit a9f537a

Please sign in to comment.