You've already forked imgproxy
mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-12-26 00:41:54 +02:00
21 lines
382 B
YAML
21 lines
382 B
YAML
name: OnPush
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
pull_request:
|
|
|
|
jobs:
|
|
ci:
|
|
uses: ./.github/workflows/ci.yml
|
|
|
|
build:
|
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/test/'))
|
|
needs: [ci]
|
|
uses: ./.github/workflows/build.yml
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
secrets: inherit
|
|
|