Skip to content

Commit

Permalink
fix: fixed sanity checks workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
13archit committed Sep 3, 2024
1 parent d52b137 commit 030f5f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sanity-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3.6.1

- name: Build the application image
run: docker build -t clouddrove/devops:0.0.${{ github.run_number }} ./docker-image/.
run: docker build -t clouddrove/devops:0.0.${{ github.run_number }} ./.docker/.

- name: Bring container up and running
run: docker run --name devops -d clouddrove/devops:0.0.${{ github.run_number }}
Expand Down

0 comments on commit 030f5f5

Please sign in to comment.