Skip to content

Commit

Permalink
Round two?
Browse files Browse the repository at this point in the history
  • Loading branch information
OoLunar committed Jul 19, 2023
1 parent 4729368 commit 05821f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
publish_release:
name: Publish Release
runs-on: "self-hosted"
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]') && contains(github.event.release.target_commitish, 'master') && contains(github.event_name, 'release')"
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]') && contains(github.event.release.target_commitish, 'master') && github.event_name == 'release'"
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -48,9 +48,9 @@ jobs:
test_release:
name: Test Release
runs-on: "self-hosted"
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]') && contains(github.event.release.target_commitish, 'master') && contains(github.event_name, 'push')"
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]') && contains(github.event.release.target_commitish, 'master') && github.event_name == 'push'"
steps:
- name: Checkout
- name: Checkout ${{ github.event_name }}
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
Expand Down

0 comments on commit 05821f3

Please sign in to comment.