mirror of
https://github.com/devilbox/docker-php-fpm.git
synced 2025-12-11 03:21:15 +00:00
Fix workflow
This commit is contained in:
16
.github/workflows/aaa-reuse-build.yml
vendored
16
.github/workflows/aaa-reuse-build.yml
vendored
@@ -178,14 +178,14 @@ jobs:
|
||||
with:
|
||||
command: |
|
||||
make save VERSION=${{ matrix.version }} FLAVOUR=base ARCH=${{ matrix.arch }} OUTFILE=${{ steps.set-artifact-name.outputs.base }}
|
||||
if: inputs.flavour == "base"
|
||||
if: ${{ inputs.flavour == 'base' }}
|
||||
|
||||
- name: "[Artifact Save] Upload base"
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ steps.set-artifact-name.outputs.base }}
|
||||
path: ${{ steps.set-artifact-name.outputs.base }}
|
||||
if: inputs.flavour == "base"
|
||||
if: ${{ inputs.flavour == 'base' }}
|
||||
|
||||
###
|
||||
### Export and Upload mods
|
||||
@@ -195,14 +195,14 @@ jobs:
|
||||
with:
|
||||
command: |
|
||||
make save VERSION=${{ matrix.version }} FLAVOUR=mods ARCH=${{ matrix.arch }} OUTFILE=${{ steps.set-artifact-name.outputs.mods }}
|
||||
if: inputs.flavour == "mods"
|
||||
if: ${{ inputs.flavour == 'mods' }}
|
||||
|
||||
- name: "[Artifact Save] Upload mods"
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ steps.set-artifact-name.outputs.mods }}
|
||||
path: ${{ steps.set-artifact-name.outputs.mods }}
|
||||
if: inputs.flavour == "mods"
|
||||
if: ${{ inputs.flavour == 'mods' }}
|
||||
|
||||
###
|
||||
### Export and Upload prod
|
||||
@@ -212,14 +212,14 @@ jobs:
|
||||
with:
|
||||
command: |
|
||||
make save VERSION=${{ matrix.version }} FLAVOUR=prod ARCH=${{ matrix.arch }} OUTFILE=${{ steps.set-artifact-name.outputs.prod }}
|
||||
if: inputs.flavour == "prod"
|
||||
if: ${{ inputs.flavour == 'prod' }}
|
||||
|
||||
- name: "[Artifact Save] Upload prod"
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ steps.set-artifact-name.outputs.prod }}
|
||||
path: ${{ steps.set-artifact-name.outputs.prod }}
|
||||
if: inputs.flavour == "prod"
|
||||
if: ${{ inputs.flavour == 'prod' }}
|
||||
|
||||
###
|
||||
### Export and Upload work
|
||||
@@ -229,11 +229,11 @@ jobs:
|
||||
with:
|
||||
command: |
|
||||
make save VERSION=${{ matrix.version }} FLAVOUR=work ARCH=${{ matrix.arch }} OUTFILE=${{ steps.set-artifact-name.outputs.work }}
|
||||
if: inputs.flavour == "work"
|
||||
if: ${{ inputs.flavour == 'work' }}
|
||||
|
||||
- name: "[Artifact Save] Upload work"
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ steps.set-artifact-name.outputs.work }}
|
||||
path: ${{ steps.set-artifact-name.outputs.work }}
|
||||
if: inputs.flavour == "work"
|
||||
if: ${{ inputs.flavour == 'work' }}
|
||||
|
||||
Reference in New Issue
Block a user