File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # Copyright (c) 2020-2021 Red Hat, Inc.
3
+ # This program and the accompanying materials are made
4
+ # available under the terms of the Eclipse Public License 2.0
5
+ # which is available at https://www.eclipse.org/legal/epl-2.0/
6
+ #
7
+ # SPDX-License-Identifier: EPL-2.0
8
+ #
9
+ name : Next Dockerimage
10
+
11
+ on :
12
+ push :
13
+ branches : [ main ]
14
+
15
+ jobs :
16
+
17
+ build :
18
+ runs-on : ubuntu-20.04
19
+ steps :
20
+ - name : Checkout web-terminal-exec source code
21
+ uses : actions/checkout@v2
22
+
23
+ - name : Docker Build & Push
24
+
25
+ with :
26
+ username : ${{ secrets.QUAY_USERNAME }}
27
+ password : ${{ secrets.QUAY_PASSWORD }}
28
+ registry : quay.io
29
+ repository : wto/web-terminal-exec
30
+ dockerfile : ./build/dockerfiles/Dockerfile
31
+ tags : next
32
+ tag_with_sha : true
You can’t perform that action at this time.
0 commit comments