Skip to content

Commit d18b7ab

Browse files
committed
fixes [docker skip]
1 parent d31a228 commit d18b7ab

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ on:
77
- 'v*'
88
jobs:
99
push_to_registry:
10-
name: Push Image to Github Packages
10+
name: Push Image to GitHub Packages
1111
runs-on: ubuntu-latest
12-
if: !contains(github.event.head_commit.message, '[skip docker]') && !contains(github.event.head_commit.message, '[docker skip]')
12+
if: "!contains(github.event.head_commit.message, 'skip docker') && !contains(github.event.head_commit.message, 'docker skip')"
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: docker/setup-qemu-action@v1
@@ -21,7 +21,7 @@ jobs:
2121
password: ${{ secrets.REGISTRY_TOKEN }}
2222
- name: Release Production Build
2323
uses: docker/build-push-action@v2
24-
if: contains(github.ref, 'develop') != true
24+
if: "!contains(github.ref, 'develop')"
2525
env:
2626
GITHUB_REF: ${{ github.ref }}
2727
with:
@@ -31,7 +31,7 @@ jobs:
3131
ghcr.io/pterodactyl/panel:${GITHUB_REF}
3232
- name: Release Development Build
3333
uses: docker/build-push-action@v2
34-
if: contains(github.ref, 'develop')
34+
if: "contains(github.ref, 'develop')"
3535
with:
3636
push: true
3737
tags: |

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
pull_request:
88
jobs:
99
integration_tests:
10-
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')"
1110
runs-on: ubuntu-latest
11+
if: "!contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'ci skip')"
1212
services:
1313
mysql:
1414
image: mysql:5.7

0 commit comments

Comments
 (0)