We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4483215 commit 0dd5141Copy full SHA for 0dd5141
.github/workflows/playwright.yml
@@ -106,7 +106,8 @@ jobs:
106
echo "LATEST_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
107
108
- name: Composer require the local rapidez/core
109
- run: composer require rapidez/core:"dev-${{ env.CORE_HASH }} || ${{ env.CORE_HASH }}-dev as ${{ env.LATEST_TAG }}"
+ run: |
110
+ [[ '${{ env.CORE_HASH }}' =~ [0-9]+\.[xX] ]] && composer require rapidez/core:"${{ env.CORE_HASH }}-dev as ${{ env.LATEST_TAG }}" || composer require rapidez/core:"dev-${{ env.CORE_HASH }} as ${{ env.LATEST_TAG }}"
111
112
- name: Install Rapidez command
113
run: php artisan rapidez:install --frontendonly
0 commit comments