Skip to content

Commit 0a55f3e

Browse files
authored
Merge pull request #1 from MicrosoftLearning/init-setup
initial setup files
2 parents de1bc7e + b0e2f90 commit 0a55f3e

File tree

128 files changed

+6240
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+6240
-94
lines changed

.github/workflows/FruitAPI.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: FruitAPI
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- 'master'
7+
paths:
8+
- Allfiles/Labs/FruitAPI/**
9+
10+
defaults:
11+
run:
12+
shell: pwsh
13+
14+
jobs:
15+
create_zip:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
- name: Create FruitAPI zip
21+
run: |
22+
cd ./Allfiles/Labs/FruitAPI
23+
zip -r -q ../../Downloads/FruitAPI.zip * .vscode/*
24+
- name: Commit and push
25+
uses: Endbug/add-and-commit@v7
26+
with:
27+
add: '["Allfiles/Downloads/FruitAPI.zip"]'
28+
message: 'Updating Zip for API source files'
29+
push: true
30+
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: FruitWebApp CodeBehind
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- 'master'
7+
paths:
8+
- Allfiles/Labs/FruitWebApp-codebehind/**
9+
10+
defaults:
11+
run:
12+
shell: pwsh
13+
14+
jobs:
15+
create_zip:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
- name: Create Fruit zip
21+
run: |
22+
cd ./Allfiles/Labs/FruitWebApp-codebehind
23+
zip -r -q ../../Downloads/FruitWebApp-codebehind.zip * .vscode/*
24+
- name: Commit and push
25+
uses: Endbug/add-and-commit@v7
26+
with:
27+
add: '["Allfiles/Downloads/FruitWebApp-codebehind.zip"]'
28+
message: 'Updating Zip for code-behind source files'
29+
push: true
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: FruitWebApp finished
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- 'master'
7+
paths:
8+
- Allfiles/Labs/FruitWebApp-finish/**
9+
10+
defaults:
11+
run:
12+
shell: pwsh
13+
14+
jobs:
15+
create_zip:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
- name: Create Fruit zip
21+
run: |
22+
cd ./Allfiles/Labs/FruitWebApp-finish
23+
zip -r -q ../../Downloads/FruitWebApp-finish.zip * .vscode/*
24+
- name: Commit and push
25+
uses: Endbug/add-and-commit@v7
26+
with:
27+
add: '["Allfiles/Downloads/FruitWebApp-finish.zip"]'
28+
message: 'Updating Zip for complete web app source files'
29+
push: true
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: FruitWebApp Render
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- 'master'
7+
paths:
8+
- Allfiles/Labs/FruitWebApp-render/**
9+
10+
defaults:
11+
run:
12+
shell: pwsh
13+
14+
jobs:
15+
create_zip:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
- name: Create Fruit zip
21+
run: |
22+
cd ./Allfiles/Labs/FruitWebApp-render
23+
zip -r -q ../../Downloads/FruitWebApp-render.zip * .vscode/*
24+
- name: Commit and push
25+
uses: Endbug/add-and-commit@v7
26+
with:
27+
add: '["Allfiles/Downloads/FruitWebApp-render.zip"]'
28+
message: 'Updating Zip for render source files'
29+
push: true

Allfiles/Downloads/FruitAPI.zip

2.32 MB
Binary file not shown.
121 KB
Binary file not shown.
372 KB
Binary file not shown.
120 KB
Binary file not shown.

Allfiles/Downloads/readme.md

Whitespace-only changes.

0 commit comments

Comments
 (0)