Bump express from 4.19.2 to 4.20.0 (#25) #80
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: Docker image | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
docker-release: | |
runs-on: ubuntu-latest | |
name: Build and publish Docker image | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v3 | |
- name: Prepare | |
id: prepare | |
run: | | |
{ | |
echo "version=$(jq -r .version supervisor-ide-config.json)" | |
echo "manifest=$(cat supervisor-ide-config.json | jq -c)" | |
} >> $GITHUB_OUTPUT | |
- name: Test Prepare | |
id: test-prepare | |
run: | | |
echo '${{ steps.prepare.outputs.version }}' | |
echo '${{ steps.prepare.outputs.manifest }}' | |
- name: Auth Google Cloud SDK | |
uses: google-github-actions/auth@v0 | |
with: | |
credentials_json: ${{ secrets.GCP_SA_KEY }} | |
- name: Set up Google Cloud SDK | |
uses: google-github-actions/setup-gcloud@v0 | |
with: | |
project_id: ${{ secrets.GCP_PROJECT_ID }} | |
- name: Set up Docker | |
run: | | |
gcloud auth configure-docker --quiet | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
context: . | |
tags: | | |
eu.gcr.io/gitpod-core-dev/build/ide/xterm-web:commit-${{ github.sha }} | |
eu.gcr.io/gitpod-core-dev/build/ide/xterm-web:latest | |
build-args: | | |
XTERM_COMMIT=${{ github.sha }} | |
XTERM_VERSION=${{ steps.prepare.outputs.version }} | |
XTERM_MANIFEST=${{ steps.prepare.outputs.manifest }} |