We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cbbdae commit c790e33Copy full SHA for c790e33
.github/workflows/build.yml
@@ -20,4 +20,22 @@ jobs:
20
- name: Start migration
21
run: npm run test:migrate
22
- name: Run integration tests
23
- run: npm run test:integration
+ 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
40
+ context: .
41
+ tags: rerorerio8/queue-manager
0 commit comments