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