-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
testing variables
- Loading branch information
Showing
1 changed file
with
6 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,13 @@ | ||
name: build-deploy-IMPROVED | ||
name: Action-to-Test | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
job1a: | ||
name: build-code | ||
dinner: | ||
name: whats-for-dinner | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Restore, Build, Test, Publish | ||
run: echo Restore, Build, Test, Publish | ||
job1b: | ||
name: deploy-sql | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: schema, triggers & sprocs | ||
run: echo deploy sql | ||
job1c: | ||
name: deploy-cosmos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: cosmos document db | ||
run: echo cosmos document db | ||
|
||
job2: | ||
runs-on: ubuntu-latest | ||
name: Deploy App to test Azure WebService | ||
needs: [job1a,job1b,job1c] | ||
steps: | ||
- name: Deploy App to Azure WebService | ||
run: echo Restore, Build, Test, Publish | ||
|
||
job3: | ||
runs-on: ubuntu-latest | ||
name: Deploy App to Prod Azure WebService | ||
needs: job2 | ||
steps: | ||
- name: Deploy App to Azure WebService | ||
run: echo Restore, Build, Test, Publish | ||
- name: Tell me what you ate | ||
run: echo ${{ secrets.DINNER }} | ||
|