Skip to content

Commit

Permalink
Adding Comments and always condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Schrottner committed May 7, 2020
1 parent 0858fcd commit e2bd95f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/releaseTrigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
name: releasing
steps:
- name: Wait for build to succeed
# This steps waits for all github actions builds to suceed, before continueing.
# Currently we only have our default action, so we can ensure,
# that our codebase builds correctly
uses: jitterbit/await-check-suites@v1
with:
appSlugFilter: 'github-actions'
Expand All @@ -26,6 +29,7 @@ jobs:
- name: Perform Release
uses: eskatos/gradle-command-action@v1
env:
# shipkit does not support GitHub Actions for now, hence that we simulate to be Travis CI
TRAVIS_BRANCH: master
TRAVIS_COMMIT_MESSAGE: <no commit message, not needed, we do not care about them, if we trigger or not>
TRAVIS_PULL_REQUEST: false
Expand All @@ -37,6 +41,7 @@ jobs:
with:
arguments: ciPerformRelease
- name: Delete Tag
if: ${{ always()}}
run: git push --delete origin releaseTrigger
- name: Trigger Website Build
uses: peter-evans/repository-dispatch@v1
Expand Down

0 comments on commit e2bd95f

Please sign in to comment.