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 48e9c55 commit 1609205Copy full SHA for 1609205
.github/workflows/build.yaml
@@ -6,12 +6,15 @@ on:
6
- master
7
tags:
8
pull_request:
9
+ branches:
10
+ - master
11
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
steps:
- - uses: actions/checkout@v2
16
+ - name: Checkout
17
+ uses: actions/checkout@v2
18
- name: Setup go
19
uses: actions/setup-go@v2
20
with:
@@ -20,5 +23,12 @@ jobs:
23
run: make clean build
21
24
- name: Run test
22
25
run: make test
- - name: Run docker build
- run: make docker-build
26
+ - name: Build and push Docker image
27
+ uses: docker/[email protected]
28
+ with:
29
+ username: ${{ secrets.DOCKER_USERNAME }}
30
+ password: ${{ secrets.DOCKER_PASSWORD }}
31
+ repository: grepplabs/mqtt-proxy
32
+ tag_with_ref: true
33
+ always_pull: true
34
+ add_git_labels: true
0 commit comments