Skip to content

Commit

Permalink
use the correct path to the test and deploy scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Feb 26, 2024
1 parent b54f053 commit cd00992
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: docker-compose -f actions-services.yml run --rm test ./test.sh
run: docker-compose -f actions-services.yml run --rm test ./scripts/test.sh

deploy:
name: Tests
name: Deploy to AWS Lambda
needs: tests
runs-on: ubuntu-latest
env:
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: docker-compose -f actions-services.yml run --rm app ./deploy.sh
run: docker-compose -f actions-services.yml run --rm app ./scripts/deploy.sh

build-and-publish:
name: Build and Publish
Expand Down
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ bootstrap
dockercfg

# credentials and other env files
aws.env
*.aes
local.env
.env
*.env
.cert/

# dev tools metadata
Expand Down

0 comments on commit cd00992

Please sign in to comment.