This commit is contained in:
John Rampono 2021-04-30 13:34:53 +08:00 коммит произвёл GitHub
Родитель 9da0319ab5
Коммит 173ebd95c4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 5 удалений

12
.github/workflows/Build_Development.yml поставляемый
Просмотреть файл

@ -15,7 +15,6 @@ env:
jobs:
build:
if: ${{env.TOGGLE_BUILD_FUNCTIONS==true}}
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
@ -25,16 +24,19 @@ jobs:
uses: actions/checkout@v2
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
#Load AdsGoFast Environment Variables
- name: lj
shell: pwsh
run: .PushEnvFileIntoVariables.ps1
working-directory: ./solution/Deployment
#Azure Function App Build
- name: Restore dependencies for Function App
if: ${{env.TOGGLE_BUILD_FUNCTIONS==true}}