Skip to content

Commit

Permalink
Split the Test and Push pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
supermarkion committed Apr 24, 2023
1 parent 8a1cf0b commit 74ad325
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/burn-cube-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ permissions:
contents: read # This is required for actions/checkout

jobs:
test_and_push:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -34,6 +34,13 @@ jobs:
run: |
docker-compose build
push_ecr:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
Expand Down

0 comments on commit 74ad325

Please sign in to comment.