gpt4 book ai didi

Github action `on` 中没有定义事件触发器

转载 作者:行者123 更新时间:2023-12-04 12:23:54 25 4
gpt4 key购买 nike

我创建了一个管道,我想在每次推送任何分支时触发
有我的default.yml :

name: default

on:
push:
branches:
- '*'

jobs:
build:
runs-on: macOS-latest

steps:
- uses: actions/checkout@v1
- name: CocoaPod Install
run: pod install
- name: Force xcode version
run: sudo xcode-select -switch /Applications/Xcode_11.2.1.app
- name: Build
run: ./pipelines.sh build
当我在github上推送这个时,我有这个错误

No event triggers defined in on


enter image description here

最佳答案

您只需使用即可触发所有分支

on: push
https://docs.github.com/en/actions/reference/events-that-trigger-workflows#example-using-a-single-event
消除 - '*'
您的工作流文件看起来不错。您是否检查了所有缩进。

关于Github action `on` 中没有定义事件触发器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63014238/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com