mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
missing required inputs in actions
This commit is contained in:
parent
8ad5442fb5
commit
3ccd5ebe71
2 changed files with 13 additions and 0 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -76,7 +76,11 @@ jobs:
|
||||||
pkg: ${{ matrix.pkg }}
|
pkg: ${{ matrix.pkg }}
|
||||||
|
|
||||||
- uses: pkgxdev/brewkit/audit@v1
|
- uses: pkgxdev/brewkit/audit@v1
|
||||||
|
with:
|
||||||
|
pkg: ${{ matrix.pkg }}
|
||||||
if: steps.build.outputs.pkgspec
|
if: steps.build.outputs.pkgspec
|
||||||
|
|
||||||
- uses: pkgxdev/brewkit/test@v1
|
- uses: pkgxdev/brewkit/test@v1
|
||||||
|
with:
|
||||||
|
pkg: ${{ matrix.pkg }}
|
||||||
if: steps.build.outputs.pkgspec
|
if: steps.build.outputs.pkgspec
|
||||||
|
|
9
.github/workflows/pkg-platform.yml
vendored
9
.github/workflows/pkg-platform.yml
vendored
|
@ -74,12 +74,16 @@ jobs:
|
||||||
APPLE_IDENTITY: ${{ secrets.APPLE_IDENTITY }}
|
APPLE_IDENTITY: ${{ secrets.APPLE_IDENTITY }}
|
||||||
|
|
||||||
- uses: pkgxdev/brewkit/build@v1
|
- uses: pkgxdev/brewkit/build@v1
|
||||||
|
with:
|
||||||
|
pkg: ${{ inputs.pkg }}
|
||||||
id: build
|
id: build
|
||||||
|
|
||||||
- uses: styfle/cancel-workflow-action@0.12.0
|
- uses: styfle/cancel-workflow-action@0.12.0
|
||||||
if: steps.build.outputs.noop
|
if: steps.build.outputs.noop
|
||||||
|
|
||||||
- uses: pkgxdev/brewkit/audit@v1
|
- uses: pkgxdev/brewkit/audit@v1
|
||||||
|
with:
|
||||||
|
pkg: ${{ inputs.pkg }}
|
||||||
|
|
||||||
- uses: pkgxdev/brewkit/upload-build-artifact@v1
|
- uses: pkgxdev/brewkit/upload-build-artifact@v1
|
||||||
|
|
||||||
|
@ -98,7 +102,11 @@ jobs:
|
||||||
- uses: pkgxdev/setup@v2
|
- uses: pkgxdev/setup@v2
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: pkgxdev/brewkit/download-build-artifact@v1
|
- uses: pkgxdev/brewkit/download-build-artifact@v1
|
||||||
|
with:
|
||||||
|
pkg: ${{ inputs.pkg }}
|
||||||
- uses: pkgxdev/brewkit/test@v1
|
- uses: pkgxdev/brewkit/test@v1
|
||||||
|
with:
|
||||||
|
pkg: ${{ inputs.pkg }}
|
||||||
|
|
||||||
bottle:
|
bottle:
|
||||||
name: bottle (${{inputs.tinyname}}.${{matrix.compression}})
|
name: bottle (${{inputs.tinyname}}.${{matrix.compression}})
|
||||||
|
@ -130,6 +138,7 @@ jobs:
|
||||||
- uses: pkgxdev/brewkit/download-build-artifact@v1
|
- uses: pkgxdev/brewkit/download-build-artifact@v1
|
||||||
id: dl
|
id: dl
|
||||||
with:
|
with:
|
||||||
|
pkg: ${{ inputs.pkg }}
|
||||||
platform: ${{ inputs.name }}
|
platform: ${{ inputs.name }}
|
||||||
extract: false
|
extract: false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue