Skip to content

Commit

Permalink
feat: Publish che-code-server:latest (#3)
Browse files Browse the repository at this point in the history
Signed-off-by: vitaliy-guliy <[email protected]>
  • Loading branch information
vitaliy-guliy authored Feb 3, 2025
1 parent ea40309 commit 3300843
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/publish-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#
# Copyright (c) 2025 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#

name: Publish che-code-server:latest

on: workflow_dispatch

jobs:

build:
name: build
runs-on: ubuntu-22.04
steps:

- name: Checkout
uses: actions/checkout@v4

- name: Login to Quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}

- name: Docker Build
run: |
docker buildx build \
--push \
--progress=plain \
-f build/dockerfiles/Dockerfile \
-t quay.io/che-incubator/che-code-server:latest \
.

0 comments on commit 3300843

Please sign in to comment.