From 1c56c93fc6d77dbb77ec974bc818ac9d191e0237 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sat, 21 Sep 2024 10:04:59 +0200 Subject: [PATCH] Rename matrix variable 'os' to 'system' in release.yml This change ensures consistency in variable naming within the GitHub Actions workflow. Adjustments have been made in both the matrix definition and subsequent usage in compile and repack steps. --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2691d33..d7c6f02 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: matrix: php: ['8.3'] arch: ['x86_64'] - os: ['linux'] + system: ['linux'] steps: - name: 'Checkout Code' @@ -34,8 +34,8 @@ jobs: - name: 'Compile the application' run: | - vendor/bin/castor repack --os={{ matrix.os }} --app-name=beaver --app-version=${{ github.ref_name }} - vendor/bin/castor compile beaver.linux.phar --php-version=${{ matrix.php }} --arch={{ matrix.arch }} --os={{ matrix.os }} + vendor/bin/castor repack --os=${{ matrix.system }} --app-name=beaver --app-version=${{ github.ref_name }} + vendor/bin/castor compile beaver.linux.phar --php-version=${{ matrix.php }} --arch=${{ matrix.arch }} --os=${{ matrix.system }} - name: 'Move applications' run: mv beaver.* ./bin/