Skip to content

Invalid type for on #27063

Answered by titieo
titieo asked this question in Actions
Discussion options

You must be logged in to vote

It’s not private, I’ve changed my user name, deleted it and regenerate it with the same name (so Github don’t redirect, you can find it here: GitHub - cokaps016/GenZOC: A simple tool to generate your OpenCore EFI automatically.
The fix is just syntax problem:
This cause the problem (tags isn’t the child of push)

on:
  push:
    branches:
      - main
  tags:
      - v[0-9]+.[0-9]+.[0-9]+*

The way to fix this is easy, make tags into push child:

on:
  push:
    branches:
      - main
    tags:
      - v[0-9]+.[0-9]+.[0-9]+*

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
2 participants