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 dac38bc commit 1169b4aCopy full SHA for 1169b4a
.github/workflows/docker-dev.yml .github/workflows/docker-latest.yml.github/workflows/docker-dev.yml renamed to .github/workflows/docker-latest.yml
@@ -1,4 +1,4 @@
1
-name: Docker Build for DEV
+name: Docker Build for DEV latest
2
3
env:
4
REGISTRY: docker.io
@@ -7,17 +7,19 @@ env:
7
on:
8
push:
9
branches:
10
+ - main
11
- dev
12
pull_request:
13
14
15
16
17
concurrency:
18
group: ${{ github.workflow }}-${{ github.ref_name }}
19
cancel-in-progress: true
20
21
jobs:
- build-dev:
22
+ build-latest:
23
runs-on: ubuntu-latest
24
steps:
25
- name: Checkout repository
@@ -36,7 +38,7 @@ jobs:
36
38
username: ${{ secrets.DOCKER_USERNAME }}
37
39
password: ${{ secrets.DOCKER_PASSWORD }}
40
- - name: Build and push DEV image
41
+ - name: Build and push latest image
42
uses: docker/build-push-action@v2
43
with:
44
context: .
0 commit comments