Rename publish_build_twlbot to publish_build

This commit is contained in:
Pk11
2020-09-17 19:16:42 -05:00
parent 2068c7a314
commit 897faa939e
+3 -3
View File
@@ -62,7 +62,7 @@ jobs:
name: build name: build
# Only run this for non-PR jobs. # Only run this for non-PR jobs.
publish_build_twlbot: publish_build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: Publish build to Universal-Team/extras name: Publish build to Universal-Team/extras
if: ${{ success() && !startsWith(github.ref, 'refs/pull') }} if: ${{ success() && !startsWith(github.ref, 'refs/pull') }}
@@ -139,11 +139,11 @@ jobs:
send_webhook: send_webhook:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [publish_build_twlbot, build] needs: [publish_build, build]
name: Send Discord webhook name: Send Discord webhook
if: ${{ !startsWith(github.ref, 'refs/pull') }} if: ${{ !startsWith(github.ref, 'refs/pull') }}
env: env:
CURRENT_DATE: ${{ needs.publish_build_twlbot.outputs.current_date }} CURRENT_DATE: ${{ needs.publish_build.outputs.current_date }}
AUTHOR_NAME: ${{ needs.build.outputs.author_name }} AUTHOR_NAME: ${{ needs.build.outputs.author_name }}
COMMITTER_NAME: ${{ needs.build.outputs.committer_name }} COMMITTER_NAME: ${{ needs.build.outputs.committer_name }}
COMMIT_SUBJECT: ${{ needs.build.outputs.commit_subject }} COMMIT_SUBJECT: ${{ needs.build.outputs.commit_subject }}