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