Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
feat: Add devworkspace-generator to Che release cycle (#751)
Browse files Browse the repository at this point in the history
Signed-off-by: Mykhailo Kuznietsov <[email protected]>
  • Loading branch information
mkuznyetsov authored Aug 29, 2023
1 parent 85eb4bc commit 8cf0257
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 9 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/devworkspace-generator-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
#
# Copyright (c) 2023 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: Release Che Devworkspace Generator

on:
workflow_dispatch:
inputs:
version:
description: 'release version in format 7.y.z'
required: true
forceRecreateTags:
description: If true, tags will be recreated. Use with caution
required: false
default: 'false'

jobs:
build:
name: Create Che Devfile Registry Release
runs-on: ubuntu-22.04
steps:
-
name: "Checkout source code"
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Check existing tags
if: github.event.inputs.performRelease == 'true'
run: |
set +e
RECREATE_TAGS=${{ github.event.inputs.forceRecreateTags }}
VERSION=${{ github.event.inputs.version }}
EXISTING_TAG=$(git ls-remote --exit-code origin refs/tags/${VERSION})
if [[ -n ${EXISTING_TAG} ]]; then
if [[ ${RECREATE_TAGS} == "true" ]]; then
echo "[INFO] Removing tag for ${VERSION} version. New tag will be recreated during release."
git push origin :$VERSION
else
echo "[ERROR] Cannot proceed with release - tag ${EXISTING_TAG} already exists."
exit 1
fi
else
echo "[INFO] No existing tags detected for $VERSION"
fi
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: yarn-${{ hashFiles('tools/devworkspace-generator/yarn.lock') }}
restore-keys: yarn-
- name: publish DevWorkspace Generator
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
run: |
cd tools/devworkspace-generator
sed -i -r -e "s/(\"version\": )(\".*\")/\1\"${thisVERSION}\"/" package.json
yarn
yarn compile
npm publish --tag latest
# che-22407 - mattermost steps are commented out, until we find a replacement for it
# - name: Create failure MM message
# if: ${{ failure() }}
# run: |
# echo "{\"text\":\":no_entry_sign: Che Devworkspace Generator ${{ github.event.inputs.version }} release has failed: https://github.com/eclipse-che/che-devfile-registry/actions/workflows/release.yml\"}" > mattermost.json
# - name: Create success MM message
# run: |
# echo "{\"text\":\":white_check_mark: Che Devworkspace Generator ${{ github.event.inputs.version }} has been released: https://www.npmjs.com/package/@eclipse-che/che-devworkspace-generator/v/${{ github.event.inputs.version }}\"}" > mattermost.json
# - name: Send MM message
# if: ${{ success() }} || ${{ failure() }}
# uses: mattermost/[email protected]
# env:
# MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
# MATTERMOST_CHANNEL: eclipse-che-releases
# MATTERMOST_USERNAME: che-bot
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2020-2021 Red Hat, Inc.
# Copyright (c) 2020-2023 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/
Expand Down Expand Up @@ -91,8 +91,8 @@ jobs:
export GITHUB_TOKEN=${{ secrets.CHE_BOT_GITHUB_TOKEN }}
./make-release.sh --version ${{ github.event.inputs.version}} --trigger-release
- name: Generate devfiles with registryUrls and publish to GH pages
-
name: Generate devfiles with registryUrls and publish to GH pages
if: github.event.inputs.publishDevfilesToGhPages == 'true'
env:
GITHUB_TOKEN: ${{ secrets.CHE_BOT_GITHUB_TOKEN }}
Expand Down
14 changes: 9 additions & 5 deletions make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,13 @@ fetchAndCheckout ()
git fetch origin "${bBRANCH}:${bBRANCH}"; git checkout "${bBRANCH}"
}

# unlike in che-plugin-registry, here we just need to update the VERSION file
updateVersionFile () {
updateVersion () {
thisVERSION="$1"
# update VERSION file with VERSION or NEWVERSION
# update main VERSION file of devfile registry
echo "${thisVERSION}" > VERSION
# update version of devworkspace-generator in package.json
jq ".\"dependencies\".\"@eclipse-che/che-devworkspace-generator\" = \"${thisVERSION}\"" tools/devworkspace-generator/package.json > tools/devworkspace-generator/package.json.update
mv tools/devworkspace-generator/package.json.update tools/devworkspace-generator/package.json
}

if [[ ! ${VERSION} ]]; then
Expand Down Expand Up @@ -240,7 +242,9 @@ commitChangeOrCreatePR()
}

# bump VERSION file to VERSION
updateVersionFile "${VERSION}"
updateVersion "${VERSION}"
# update build scripts to reference release version of devworkspace generator
sed -i -r -e "s/CHE_DEVWORKSPACE_GENERATOR_VERSION=next/CHE_DEVWORKSPACE_GENERATOR_VERSION=${VERSION}/" build/scripts/generate_devworkspace_templates.sh

# commit change into branch
commitChangeOrCreatePR "${VERSION}" "${BRANCH}" "pr-${BRANCH}-to-${VERSION}"
Expand Down Expand Up @@ -271,7 +275,7 @@ else
fi

# bump VERSION file to NEXTVERSION
updateVersionFile "${NEXTVERSION}"
updateVersion "${NEXTVERSION}"
commitChangeOrCreatePR "${NEXTVERSION}" "${BASEBRANCH}" "pr-${BASEBRANCH}-to-${NEXTVERSION}"

# cleanup tmp dir
Expand Down
2 changes: 1 addition & 1 deletion tools/devworkspace-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-che/che-devworkspace-generator",
"version": "0.0.1",
"version": "7.69.0",
"private": false,
"description": "Generates DevWorkspaces by transforming existing devfiles",
"main": "lib/entrypoint.js",
Expand Down

0 comments on commit 8cf0257

Please sign in to comment.