Skip to content

Commit d84be53

Browse files
committed
Updating master action
1 parent 6ca3111 commit d84be53

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
name: Docker Image Master - Stable
22

33
on:
4-
pull_request:
4+
push:
55
branches: ["master"]
66

77
jobs:
88
build:
99
runs-on: ubuntu-latest
1010

1111
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v3
14+
1215
- name: Login to DockerHub
1316
uses: docker/login-action@v3
1417
with:
1518
username: ${{ secrets.DOCKERHUB_USERNAME }}
1619
password: ${{ secrets.DOCKERHUB_TOKEN }}
1720

18-
- name: Build and push
21+
- name: Build and push Docker image
1922
uses: docker/build-push-action@v4
2023
with:
24+
context: .
2125
push: true
2226
tags: themranderson/conversionapi:stable

0 commit comments

Comments
 (0)