Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/FruitAPI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: FruitAPI
on:
workflow_dispatch:
push:
branches:
- 'master'
paths:
- Allfiles/Labs/FruitAPI/**

defaults:
run:
shell: pwsh

jobs:
create_zip:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create FruitAPI zip
run: |
cd ./Allfiles/Labs/FruitAPI
zip -r -q ../../Downloads/FruitAPI.zip * .vscode/*
- name: Commit and push
uses: Endbug/add-and-commit@v7
with:
add: '["Allfiles/Downloads/FruitAPI.zip"]'
message: 'Updating Zip for API source files'
push: true

29 changes: 29 additions & 0 deletions .github/workflows/FruitWebAppCodeBehind.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: FruitWebApp CodeBehind
on:
workflow_dispatch:
push:
branches:
- 'master'
paths:
- Allfiles/Labs/FruitWebApp-codebehind/**

defaults:
run:
shell: pwsh

jobs:
create_zip:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create Fruit zip
run: |
cd ./Allfiles/Labs/FruitWebApp-codebehind
zip -r -q ../../Downloads/FruitWebApp-codebehind.zip * .vscode/*
- name: Commit and push
uses: Endbug/add-and-commit@v7
with:
add: '["Allfiles/Downloads/FruitWebApp-codebehind.zip"]'
message: 'Updating Zip for code-behind source files'
push: true
29 changes: 29 additions & 0 deletions .github/workflows/FruitWebAppFinish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: FruitWebApp finished
on:
workflow_dispatch:
push:
branches:
- 'master'
paths:
- Allfiles/Labs/FruitWebApp-finish/**

defaults:
run:
shell: pwsh

jobs:
create_zip:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create Fruit zip
run: |
cd ./Allfiles/Labs/FruitWebApp-finish
zip -r -q ../../Downloads/FruitWebApp-finish.zip * .vscode/*
- name: Commit and push
uses: Endbug/add-and-commit@v7
with:
add: '["Allfiles/Downloads/FruitWebApp-finish.zip"]'
message: 'Updating Zip for complete web app source files'
push: true
29 changes: 29 additions & 0 deletions .github/workflows/FruitWebAppRender.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: FruitWebApp Render
on:
workflow_dispatch:
push:
branches:
- 'master'
paths:
- Allfiles/Labs/FruitWebApp-render/**

defaults:
run:
shell: pwsh

jobs:
create_zip:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create Fruit zip
run: |
cd ./Allfiles/Labs/FruitWebApp-render
zip -r -q ../../Downloads/FruitWebApp-render.zip * .vscode/*
- name: Commit and push
uses: Endbug/add-and-commit@v7
with:
add: '["Allfiles/Downloads/FruitWebApp-render.zip"]'
message: 'Updating Zip for render source files'
push: true
Binary file added Allfiles/Downloads/FruitAPI.zip
Binary file not shown.
Binary file added Allfiles/Downloads/FruitWebApp-codebehind.zip
Binary file not shown.
Binary file added Allfiles/Downloads/FruitWebApp-finish.zip
Binary file not shown.
Binary file added Allfiles/Downloads/FruitWebApp-render.zip
Binary file not shown.
Empty file added Allfiles/Downloads/readme.md
Empty file.
Loading