workflows: remove testing lines
parent
a9b5c45281
commit
724fabcaaf
|
@ -45,10 +45,6 @@ jobs:
|
||||||
HOMEBREW_BINTRAY_KEY: ${{ secrets.HOMEBREW_BINTRAY_KEY }}
|
HOMEBREW_BINTRAY_KEY: ${{ secrets.HOMEBREW_BINTRAY_KEY }}
|
||||||
run: |
|
run: |
|
||||||
cd bottles
|
cd bottles
|
||||||
# TODO: Remove once this pull request is merged.
|
|
||||||
brew tap homebrew/test-bot
|
|
||||||
git -C $(brew --repo homebrew/test-bot) fetch origin pull/344/merge:pr-334
|
|
||||||
git -C $(brew --repo homebrew/test-bot) checkout pr-334
|
|
||||||
brew test-bot --ci-upload --publish
|
brew test-bot --ci-upload --publish
|
||||||
- name: Push bottle commit
|
- name: Push bottle commit
|
||||||
env:
|
env:
|
||||||
|
@ -58,10 +54,10 @@ jobs:
|
||||||
cd $(brew --repo ${{github.repository}})
|
cd $(brew --repo ${{github.repository}})
|
||||||
git rebase --force origin/master
|
git rebase --force origin/master
|
||||||
MESSAGE="$(git log HEAD^.. --format=%B)
|
MESSAGE="$(git log HEAD^.. --format=%B)
|
||||||
|
|
||||||
Closes #${{github.event.client_payload.pull_request}}."
|
Closes #${{github.event.client_payload.pull_request}}."
|
||||||
git commit --amend --signoff --allow-empty -m "$MESSAGE"
|
git commit --amend --signoff --allow-empty -m "$MESSAGE"
|
||||||
git show --pretty=fuller
|
git show --pretty=fuller
|
||||||
exit 0
|
|
||||||
for try in $(seq 5); do
|
for try in $(seq 5); do
|
||||||
git fetch
|
git fetch
|
||||||
git rebase origin/master
|
git rebase origin/master
|
||||||
|
|
Loading…
Reference in New Issue