Skip to content

Commit 2bc4aaf

Browse files
authored
Update octane.yml
1 parent 3e81f85 commit 2bc4aaf

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/octane.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
push:
66
branches:
77
- main
8-
- feature/*
98
pull_request:
109
branches:
1110
- main
@@ -48,8 +47,9 @@ jobs:
4847
- name: Initialize ripple
4948
working-directory: app
5049
run: |
51-
echo "PR_BRANCH_NAME: $PR_BRANCH_NAME"
52-
if [ "$PR_BRANCH_NAME" = "main" ]; then
50+
echo "DEBUG---github.ref_name: ${{ github.ref_name }}"
51+
echo "DEBUG---PR_BRANCH_NAME: $PR_BRANCH_NAME"
52+
if [ ${{ github.ref_name }} = "main" ]; then
5353
VERSION="dev-main"
5454
else
5555
VERSION="dev-${{ github.sha }}"
@@ -58,8 +58,6 @@ jobs:
5858
composer clear-cache
5959
composer config minimum-stability dev
6060
composer require cloudtay/laravel-ripple:$VERSION
61-
composer require laravel/octane
62-
6361
# 初始化测试路由
6462
- name: Initialize Test Route
6563
working-directory: app

0 commit comments

Comments
 (0)