mirror of
https://github.com/gromgit/homebrew-fuse.git
synced 2025-12-06 16:15:54 +00:00
update workflows
This commit is contained in:
parent
eaa3827a40
commit
51ca3ed7ce
2 changed files with 18 additions and 12 deletions
10
.github/workflows/publish.yml
vendored
10
.github/workflows/publish.yml
vendored
|
|
@ -1,15 +1,21 @@
|
||||||
name: brew pr-pull
|
name: brew pr-pull
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
types:
|
types:
|
||||||
- labeled
|
- labeled
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pr-pull:
|
pr-pull:
|
||||||
|
if: contains(github.event.pull_request.labels.*.name, 'pr-pull')
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-13, macos-14]
|
os: [macos-13, macos-14]
|
||||||
if: contains(github.event.pull_request.labels.*.name, 'pr-pull')
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Homebrew
|
- name: Set up Homebrew
|
||||||
uses: Homebrew/actions/setup-homebrew@master
|
uses: Homebrew/actions/setup-homebrew@master
|
||||||
|
|
@ -20,6 +26,8 @@ jobs:
|
||||||
- name: Pull bottles
|
- name: Pull bottles
|
||||||
env:
|
env:
|
||||||
HOMEBREW_GITHUB_API_TOKEN: ${{ github.token }}
|
HOMEBREW_GITHUB_API_TOKEN: ${{ github.token }}
|
||||||
|
HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ github.token }}
|
||||||
|
HOMEBREW_GITHUB_PACKAGES_USER: ${{ github.repository_owner }}
|
||||||
PULL_REQUEST: ${{ github.event.pull_request.number }}
|
PULL_REQUEST: ${{ github.event.pull_request.number }}
|
||||||
run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST"
|
run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST"
|
||||||
|
|
||||||
|
|
|
||||||
20
.github/workflows/tests.yml
vendored
20
.github/workflows/tests.yml
vendored
|
|
@ -1,8 +1,11 @@
|
||||||
name: brew test-bot
|
name: brew test-bot
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: main
|
branches:
|
||||||
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-bot:
|
test-bot:
|
||||||
strategy:
|
strategy:
|
||||||
|
|
@ -15,16 +18,11 @@ jobs:
|
||||||
uses: Homebrew/actions/setup-homebrew@master
|
uses: Homebrew/actions/setup-homebrew@master
|
||||||
|
|
||||||
- name: Cache Homebrew Bundler RubyGems
|
- name: Cache Homebrew Bundler RubyGems
|
||||||
id: cache
|
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
|
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
|
||||||
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
|
key: ${{ matrix.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
|
||||||
restore-keys: ${{ runner.os }}-rubygems-
|
restore-keys: ${{ matrix.os }}-rubygems-
|
||||||
|
|
||||||
- name: Install Homebrew Bundler RubyGems
|
|
||||||
if: steps.cache.outputs.cache-hit != 'true'
|
|
||||||
run: brew install-bundler-gems
|
|
||||||
|
|
||||||
- run: brew install --cask macfuse
|
- run: brew install --cask macfuse
|
||||||
|
|
||||||
|
|
@ -34,12 +32,12 @@ jobs:
|
||||||
|
|
||||||
- run: brew test-bot --only-tap-syntax
|
- run: brew test-bot --only-tap-syntax
|
||||||
|
|
||||||
- run: brew test-bot --only-formulae
|
- run: brew test-bot --only-formulae --root-url='https://ghcr.io/v2/gromgit/fuse'
|
||||||
if: github.event_name == 'pull_request'
|
if: github.event_name == 'pull_request'
|
||||||
|
|
||||||
- name: Upload bottles as artifact
|
- name: Upload bottles as artifact
|
||||||
if: always() && github.event_name == 'pull_request'
|
if: always() && github.event_name == 'pull_request'
|
||||||
uses: actions/upload-artifact@main
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: bottles
|
name: bottles_${{ matrix.os }}
|
||||||
path: '*.bottle.*'
|
path: '*.bottle.*'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue