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
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Build

on:
push
pull_request:
branches: [ main, release** ]

jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
name: "CodeQL"

on:
push
pull_request:
branches: [ main, release** ]

jobs:
analyze:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ jobs:
environment: Development
env:
deploy-folder: c:/websites/robertlynja


defaults:
run:
shell: powershell

steps:
- name: Download a Build Artifact (.Net)
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -101,4 +105,4 @@ jobs:
run: Copy-Item ./website/* ${{ env.deploy-folder }} -Recurse -Force
- name: Remove app offline
run: Remove-Item ${{ env.deploy-folder }}/app_offline.htm


6 changes: 6 additions & 0 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Deploy-To-Prod
concurrency: deploy-production

on:

push:
branches:
- "release**"
Expand Down Expand Up @@ -30,6 +31,7 @@ jobs:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}

- name: BuildUI
run: |
npm install --prefix web
Expand Down Expand Up @@ -71,6 +73,10 @@ jobs:
env:
deploy-folder: c:/websites/robertlynja

defaults:
run:
shell: powershell

steps:
- name: Download a Build Artifact (.Net)
uses: actions/download-artifact@v3
Expand Down