Reorder GitHub Packages steps.

This will avoid pushes happening even on failures.
master
Mike McQuaid 2021-04-02 16:14:48 +01:00
parent 394e17291b
commit c78c3be94c
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
3 changed files with 18 additions and 18 deletions

View File

@ -151,18 +151,18 @@ jobs:
cd ~/bottles cd ~/bottles
brew pr-upload --verbose --keep-old --committer="$BREWTESTBOT_NAME_EMAIL" brew pr-upload --verbose --keep-old --committer="$BREWTESTBOT_NAME_EMAIL"
- name: Push commits
uses: Homebrew/actions/git-try-push@master
with:
token: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
- name: Upload bottles to GitHub Packages - name: Upload bottles to GitHub Packages
env: env:
HOMEBREW_GITHUB_PACKAGES_USER: brewtestbot HOMEBREW_GITHUB_PACKAGES_USER: brewtestbot
HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{secrets.HOMEBREW_GITHUB_PACKAGES_API_TOKEN}} HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{secrets.HOMEBREW_GITHUB_PACKAGES_API_TOKEN}}
run: | run: |
cd ~/bottles cd ~/bottles
brew pr-upload --verbose --keep-old --root-url="https://ghcr.io/v2/Homebrew/homebrew-core" brew pr-upload --verbose --keep-old --no-commit --root-url="https://ghcr.io/v2/Homebrew/homebrew-core"
- name: Push commits
uses: Homebrew/actions/git-try-push@master
with:
token: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
- name: Post comment on failure - name: Post comment on failure
if: ${{!success() && github.event.inputs.issue > 0}} if: ${{!success() && github.event.inputs.issue > 0}}

View File

@ -152,18 +152,18 @@ jobs:
cd ~/bottles cd ~/bottles
brew pr-upload --verbose --committer="$BREWTESTBOT_NAME_EMAIL" brew pr-upload --verbose --committer="$BREWTESTBOT_NAME_EMAIL"
- name: Push commits
uses: Homebrew/actions/git-try-push@master
with:
token: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
- name: Upload bottles to GitHub Packages - name: Upload bottles to GitHub Packages
env: env:
HOMEBREW_GITHUB_PACKAGES_USER: brewtestbot HOMEBREW_GITHUB_PACKAGES_USER: brewtestbot
HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{secrets.HOMEBREW_GITHUB_PACKAGES_API_TOKEN}} HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{secrets.HOMEBREW_GITHUB_PACKAGES_API_TOKEN}}
run: | run: |
cd ~/bottles cd ~/bottles
brew pr-upload --verbose --root-url="https://ghcr.io/v2/Homebrew/homebrew-core" brew pr-upload --verbose --no-commit --root-url="https://ghcr.io/v2/Homebrew/homebrew-core"
- name: Push commits
uses: Homebrew/actions/git-try-push@master
with:
token: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
- name: Post comment on failure - name: Post comment on failure
if: ${{!success() && github.event.inputs.issue > 0}} if: ${{!success() && github.event.inputs.issue > 0}}

View File

@ -71,17 +71,17 @@ jobs:
BREWTESTBOT_NAME_EMAIL: "BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>" BREWTESTBOT_NAME_EMAIL: "BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>"
run: brew pr-pull --debug --workflows=tests.yml --committer="$BREWTESTBOT_NAME_EMAIL" ${{github.event.inputs.args}} ${{github.event.inputs.pull_request}} run: brew pr-pull --debug --workflows=tests.yml --committer="$BREWTESTBOT_NAME_EMAIL" ${{github.event.inputs.args}} ${{github.event.inputs.pull_request}}
- name: Push commits
uses: Homebrew/actions/git-try-push@master
with:
token: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
- name: Pull and upload bottles to GitHub Packages - name: Pull and upload bottles to GitHub Packages
env: env:
HOMEBREW_GITHUB_API_TOKEN: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}} HOMEBREW_GITHUB_API_TOKEN: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
HOMEBREW_GITHUB_PACKAGES_USER: brewtestbot HOMEBREW_GITHUB_PACKAGES_USER: brewtestbot
HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{secrets.HOMEBREW_GITHUB_PACKAGES_API_TOKEN}} HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{secrets.HOMEBREW_GITHUB_PACKAGES_API_TOKEN}}
run: brew pr-pull --debug --workflows=tests.yml ${{github.event.inputs.args}} ${{github.event.inputs.pull_request}} --verbose --root-url="https://ghcr.io/v2/Homebrew/homebrew-core" run: brew pr-pull --debug --workflows=tests.yml --no-commit --verbose --root-url="https://ghcr.io/v2/Homebrew/homebrew-core" ${{github.event.inputs.args}} ${{github.event.inputs.pull_request}}
- name: Push commits
uses: Homebrew/actions/git-try-push@master
with:
token: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}
- name: Post comment on failure - name: Post comment on failure
if: ${{!success()}} if: ${{!success()}}