add skip ci flag [skip ci]

This commit is contained in:
zznty
2025-08-04 02:20:36 +07:00
parent 65d71b1730
commit d27894dd3b

View File

@@ -8,6 +8,7 @@ jobs:
compute-version: compute-version:
name: Compute Version name: Compute Version
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "!contains(github.event.commits[0].message, '[skip ci]')"
outputs: outputs:
version: ${{ steps.version.outputs.version }} version: ${{ steps.version.outputs.version }}
steps: steps:
@@ -27,6 +28,7 @@ jobs:
build-nuget: build-nuget:
name: Build Nuget package name: Build Nuget package
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "!contains(github.event.commits[0].message, '[skip ci]')"
needs: [compute-version] needs: [compute-version]
strategy: strategy:
matrix: matrix:
@@ -48,6 +50,7 @@ jobs:
build: build:
name: Build Launcher name: Build Launcher
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "!contains(github.event.commits[0].message, '[skip ci]')"
needs: [compute-version] needs: [compute-version]
env: env:
VPK_CHANNEL: win VPK_CHANNEL: win