Skip to content

Commit c790e33

Browse files
committed
feature: added build jod for CI
1 parent 6cbbdae commit c790e33

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,22 @@ jobs:
2020
- name: Start migration
2121
run: npm run test:migrate
2222
- name: Run integration tests
23-
run: npm run test:integration
23+
run: npm run test:integration
24+
25+
build:
26+
runs-on: ubuntu-20.04
27+
steps:
28+
- name: Checkout
29+
uses: actions/checkout@v4
30+
31+
- name: Log in to Docker Hub
32+
uses: docker/login-action@v2
33+
with:
34+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
35+
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
36+
37+
- name: Build and push app Docker image
38+
uses: docker/build-push-action@v2
39+
with:
40+
context: .
41+
tags: rerorerio8/queue-manager

0 commit comments

Comments
 (0)