Skip to content

Commit

Permalink
Ensure we use up-to-date formulae from brew
Browse files Browse the repository at this point in the history
  • Loading branch information
Cimbali committed Dec 15, 2023
1 parent 81d152a commit caef6fc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ jobs:
needs: checks
runs-on: macos-latest
steps:
- name: Update brew
continue-on-error: true
run: |
brew update
brew upgrade
- name: Configure brew repo
continue-on-error: true
run: |
Expand All @@ -102,9 +108,12 @@ jobs:
run: |
brew audit --strict pympress
- name: Install latest
- name: Install dependencies
run: |
brew install pympress --only-dependencies
- name: Install latest
run: |
brew install pympress --build-from-source --HEAD
- name: Test help output
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,10 @@ jobs:

steps:
- name: Install dependencies
continue-on-error: true
run: |
brew update
brew upgrade
brew install pipgrip
- name: Configure brew repo
Expand Down

0 comments on commit caef6fc

Please sign in to comment.