chore: distinguish CI skip flags

pull/243/head
Josh Moore 12 months ago
parent 977fd222ae
commit 5efb5a5dca

@ -9,6 +9,7 @@ on:
jobs:
test:
name: Test Build
if: "!contains(github.event.head_commit.message, '[skip ci:docker]')"
runs-on: ubuntu-latest
container: node:20-alpine
steps:
@ -26,7 +27,7 @@ jobs:
build_and_push:
name: Build & Publish Docker Images
if: github.ref == 'refs/heads/master' && !contains(github.event.head_commit.message, '[skip ci]')
if: (github.ref == 'refs/heads/master' || github.ref == 'dev/0.15.0') && !contains(github.event.head_commit.message, '[skip ci:docker]')
runs-on: ubuntu-latest
steps:
- name: Checkout

@ -11,6 +11,7 @@ on:
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci:ts]')"
runs-on: ubuntu-latest
env:
ARCHIVE_NAME: ass-build-${{ github.run_id }}-${{ github.run_number }}

Loading…
Cancel
Save