mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-17 07:12:54 +00:00
fix(ci): remove broken paths-ignore and add [skip ci] support
This commit is contained in:
parent
459bc20a77
commit
448a92cce5
|
|
@ -4,12 +4,7 @@ on:
|
|||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
paths-ignore:
|
||||
- '.gitignore'
|
||||
- '*.md'
|
||||
- '.gitea/**'
|
||||
- '!.gitea/workflows/nightly.yml'
|
||||
- main
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
|
@ -20,6 +15,9 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
if: >
|
||||
!github.event.head_commit ||
|
||||
!contains(github.event.head_commit.message, '[skip ci]')
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
@ -77,6 +75,9 @@ jobs:
|
|||
|
||||
release:
|
||||
needs: build
|
||||
if: >
|
||||
!github.event.head_commit ||
|
||||
!contains(github.event.head_commit.message, '[skip ci]')
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Download build artifacts
|
||||
|
|
|
|||
Loading…
Reference in a new issue