Skip to content

Commit a9f537a

Browse files
authored
Merge pull request #16504 from phalcon/5.0.x
5.6.0 Release
2 parents 33fb1ca + feaa3de commit a9f537a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+163461
-181193
lines changed

.github/actions/build-phalcon-win/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@ runs:
7474
cache_dir: ${{ env.CACHE_DIR }}
7575

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

8181
# Workaround for
8282
# PHP Warning: PHP Startup: Can't load module 'C:\tools\php\ext\php_zephir_parser.dll'
8383
# as it's linked with 14.29, but the core is linked with 14.16 in Unknown on line 0
8484
- name: Configure Developer Command Prompt for MSVC compiler
85-
uses: ilammy/msvc-dev-cmd@v1.10.0
85+
uses: ilammy/msvc-dev-cmd@v1.12.1
8686
if: ${{ inputs.php_version }} == '7.4'
8787
with:
8888
arch: ${{ inputs.arch }}

.github/workflows/main.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
env:
2121
# All versions should be declared here
22-
PHALCON_VERSION: 5.5.0
22+
PHALCON_VERSION: 5.6.0
2323
ZEPHIR_PARSER_VERSION: 1.6.0
2424

2525
# For tests
@@ -284,7 +284,7 @@ jobs:
284284
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
285285

286286
- name: Download Phalcon Pecl Package
287-
uses: actions/download-artifact@v2
287+
uses: actions/download-artifact@v3
288288
with:
289289
name: phalcon-pecl
290290
path: ./phalcon-pecl
@@ -386,12 +386,13 @@ jobs:
386386
- name: Get the release version
387387
id: get-version
388388
run: |
389-
echo ::set-output name=version::${GITHUB_REF#refs/tags/}
389+
echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
390+
# echo ::set-output name=version::${GITHUB_REF#refs/tags/}
390391
# echo "version=${GITHUB_REF#refs/tags/}" >> "$GITHUB_ENV" # This needs to be checked
391392

392393
- name: Download Phalcon build artifacts
393394
id: download
394-
uses: actions/download-artifact@v2
395+
uses: actions/download-artifact@v3
395396
with:
396397
path: ./build-artifacts
397398

@@ -407,8 +408,8 @@ jobs:
407408
uses: ncipollo/release-action@v1
408409
with:
409410
token: ${{ secrets.GITHUB_TOKEN }}
410-
name: ${{ steps.get-version.outputs.version }}
411-
tag: ${{ steps.get-version.outputs.version }}
411+
name: ${{ env.version }}
412+
tag: ${{ env.version }}
412413
bodyFile: "./build-artifacts/release/release-notes.md"
413414
allowUpdates: true
414415
artifacts: "./build-artifacts/release/*.zip,./build-artifacts/release/*.tgz"

0 commit comments

Comments
 (0)