File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 77 - ' v*'
88jobs :
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
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 :
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 : |
Original file line number Diff line number Diff line change 77 pull_request :
88jobs :
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
You can’t perform that action at this time.
0 commit comments