Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
High10Hunter committed Sep 8, 2024
1 parent 37809b3 commit 6cf98d7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ workflows:
- build:
filters:
branches:
only: test
only: develop

DeployDev:
# if the 'task' parameter equals 'deploy'
Expand All @@ -104,11 +104,11 @@ workflows:
- equal: [deploy, << pipeline.parameters.task >>]
- equal: [dev, << pipeline.parameters.build_stage >>]
jobs:
- build
# - build
- deploy:
context: aws
requires:
- build
# requires:
# - build
filters:
branches:
only: test
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Build
on:
pull_request:
types: [opened, synchronize]
# branches: [develop]
branches: [test]
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -15,5 +14,5 @@ jobs:
-X POST \
-H "Content-Type: application/json" \
-H "Circle-Token: ${{ secrets.CIRCLECI_TOKEN }}" \
--data '{"branch": "test", "parameters": {"task": "build"}}' \
--data '{"branch": "develop", "parameters": {"task": "build"}}' \
https://circleci.com/api/v2/project/gh/dscdut/map-sorter-api/pipeline
5 changes: 3 additions & 2 deletions .github/workflows/deploy-dev-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: DeployDev
on:
pull_request:
types: [closed]
# pull_request:
# types: [closed]
# branches: [develop]
push:
branches: [test]

jobs:
Expand Down

0 comments on commit 6cf98d7

Please sign in to comment.