From 23882f0de6e9e8c5ae60aa2e3bdeff5111d81b93 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sun, 23 Mar 2025 22:39:28 -0500 Subject: [PATCH] chore: stub out console app workflows --- .../{pull_request.yml => api_pull_request.yml} | 2 +- .github/workflows/console_pull_request.yml | 1 + .github/workflows/{deploy.yml => deploy_api.yml} | 12 ++++-------- .github/workflows/publish_console.yml | 1 + 4 files changed, 7 insertions(+), 9 deletions(-) rename .github/workflows/{pull_request.yml => api_pull_request.yml} (98%) create mode 100644 .github/workflows/console_pull_request.yml rename .github/workflows/{deploy.yml => deploy_api.yml} (90%) create mode 100644 .github/workflows/publish_console.yml diff --git a/.github/workflows/pull_request.yml b/.github/workflows/api_pull_request.yml similarity index 98% rename from .github/workflows/pull_request.yml rename to .github/workflows/api_pull_request.yml index 62fcb54..b0338c3 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/api_pull_request.yml @@ -1,4 +1,4 @@ -name: Pull Request +name: API Pull Request defaults: run: working-directory: ./src diff --git a/.github/workflows/console_pull_request.yml b/.github/workflows/console_pull_request.yml new file mode 100644 index 0000000..240d1fb --- /dev/null +++ b/.github/workflows/console_pull_request.yml @@ -0,0 +1 @@ +name: Console Pull Request diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy_api.yml similarity index 90% rename from .github/workflows/deploy.yml rename to .github/workflows/deploy_api.yml index 3270866..86ae7ed 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy_api.yml @@ -1,16 +1,12 @@ -name: Deploy +name: Deploy API on: workflow_dispatch: push: branches: - main - paths-ignore: - - '.github/**' - - '.gitignore' - - '.editorconfig' - - 'LICENSE.md' - - '**/*/README.md' - - '**/*/Dockerfile' + paths: + - src/AltGen.API/** + - src/AltGen.API.Tests/** jobs: build: name: Build and push Docker image diff --git a/.github/workflows/publish_console.yml b/.github/workflows/publish_console.yml new file mode 100644 index 0000000..ed1af98 --- /dev/null +++ b/.github/workflows/publish_console.yml @@ -0,0 +1 @@ +name: Publish Console