This commit is contained in:
Rodolfo Berrios
2021-06-13 15:45:28 -04:00
parent ebd6718f04
commit f30a33d118
2 changed files with 2 additions and 7 deletions

View File

@@ -1,11 +1,6 @@
name: Build httpd-php
on:
workflow_dispatch:
inputs:
useCustomApp:
description: 'Use REPO_APP?'
required: false
default: '0'
jobs:
build:
@@ -18,8 +13,7 @@ jobs:
- name: Checkout custom application
env:
REPO_CUSTOM_APP: ${{ secrets.REPO_APP }}
USE_CUSTOM_APP: ${{ github.event.inputs.useCustomApp }}
if: env.REPO_CUSTOM_APP != null && env.USE_CUSTOM_APP > 0
if: env.REPO_CUSTOM_APP != null
uses: actions/checkout@v2
with:
repository: ${{ secrets.REPO_APP }}