We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d84be53 commit bd81b2dCopy full SHA for bd81b2d
.github/workflows/docker-dev.yml
@@ -2,23 +2,26 @@ name: Docker Image Dev - Latest
2
3
on:
4
push:
5
- branches: ["!master"]
6
pull_request:
7
8
9
jobs:
10
build:
+ if: github.ref != 'refs/heads/master'
11
runs-on: ubuntu-latest
12
13
steps:
+ - name: Checkout code
14
+ uses: actions/checkout@v3
15
+
16
- name: Login to DockerHub
17
uses: docker/login-action@v4
18
with:
19
username: ${{ secrets.DOCKERHUB_USERNAME }}
20
password: ${{ secrets.DOCKERHUB_TOKEN }}
21
- - name: Build and push
22
+ - name: Build and push Docker image
23
uses: docker/build-push-action@v3
24
25
+ context: .
26
push: true
27
tags: themranderson/conversionapi:latest
0 commit comments