Publish Theia IDE Docker Image #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Theia IDE Docker Image | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: The image's tag | |
required: true | |
default: next | |
jobs: | |
build: | |
name: Build and push Theia IDE image to Github Packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Log in to the Github Container registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: browser.Dockerfile | |
push: true | |
tags: | | |
ghcr.io/${{ github.repository }}/theia-ide:${{ github.event.inputs.tag }} | |
ghcr.io/${{ github.repository }}/theia-ide:latest |