We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e81f85 commit 2bc4aafCopy full SHA for 2bc4aaf
.github/workflows/octane.yml
@@ -5,7 +5,6 @@ on:
5
push:
6
branches:
7
- main
8
- - feature/*
9
pull_request:
10
11
@@ -48,8 +47,9 @@ jobs:
48
47
- name: Initialize ripple
49
working-directory: app
50
run: |
51
- echo "PR_BRANCH_NAME: $PR_BRANCH_NAME"
52
- if [ "$PR_BRANCH_NAME" = "main" ]; then
+ echo "DEBUG---github.ref_name: ${{ github.ref_name }}"
+ echo "DEBUG---PR_BRANCH_NAME: $PR_BRANCH_NAME"
+ if [ ${{ github.ref_name }} = "main" ]; then
53
VERSION="dev-main"
54
else
55
VERSION="dev-${{ github.sha }}"
@@ -58,8 +58,6 @@ jobs:
58
composer clear-cache
59
composer config minimum-stability dev
60
composer require cloudtay/laravel-ripple:$VERSION
61
- composer require laravel/octane
62
-
63
# 初始化测试路由
64
- name: Initialize Test Route
65
0 commit comments