Skip to content

Commit 5372e0a

Browse files
authored
Merge pull request #21 from redhat-developer/next-dockerimage
Add github action for creating next dockerimage
2 parents 64c4fe6 + 495f502 commit 5372e0a

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
uses: docker/[email protected]
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

0 commit comments

Comments
 (0)