Skip to content

Commit

Permalink
Publish 1.34 image
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <timothy.johnson@broadcom.com>
  • Loading branch information
t1m0thyj committed Aug 14, 2023
1 parent 24f632a commit 32b0ae1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ze-theia-slim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Get Theia version
id: load-env
run: node ze/theia-slim/getTheiaVersion.js ${{ inputs.theia-version || 'next' }}
run: node ze/theia-slim/getTheiaVersion.js ${{ inputs.theia-version || '1.34' }}

build-and-deploy:
needs: setup
Expand All @@ -43,8 +43,9 @@ jobs:
THEIA_VERSION=${{ needs.setup.outputs.theia-version }}
name: ze-theia-slim
path: ze/theia-slim
push: ${{ (github.event_name == 'workflow_dispatch' && inputs.deploy) || github.event_name == 'schedule' || (github.event_name == 'push' && github.ref_name == 'main') }}
push: true
# Skip build for ARM64 unless we are deploying because it is slow
qemu: true
tags: ${{ needs.setup.outputs.docker-tags }}
timeout: 60
timeout: 90
secrets: inherit
2 changes: 1 addition & 1 deletion ze/theia-slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

ARG NODE_VERSION=lts
ARG THEIA_VERSION=latest
FROM --platform=$BUILDPLATFORM node:${NODE_VERSION}-alpine
FROM node:${NODE_VERSION}-alpine
RUN apk add --no-cache curl make pkgconfig gcc g++ python3 libx11-dev libxkbfile-dev libsecret-dev
WORKDIR /home/theia
ADD buildPackageJson.js ./buildPackageJson.js
Expand Down

0 comments on commit 32b0ae1

Please sign in to comment.