Skip to content

Commit

Permalink
chore(build) NPM publish of cdn-assets and highlight.js via GHA (#2850)
Browse files Browse the repository at this point in the history
* Automate publishing of pre-releases to NPM

- Publishes both `highlight.js` and `@highlightjs/cdn-assets`
  • Loading branch information
joshgoebel committed Nov 15, 2020
1 parent d602ee1 commit 7c7f496
Show file tree
Hide file tree
Showing 2 changed files with 133 additions and 0 deletions.
132 changes: 132 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
name: Release

on:
push:
tags:
- "*beta*"
- "*pre*"
# uncomment this later when we're ready for production releases
# - "1[0-9]+.[0-9]+.[0-9]+"

jobs:
prerelease:
name: Pre-release
runs-on: ubuntu-latest
steps:
- name: Checkout highlight.js
uses: actions/checkout@v2

- name: Tag is ${{ github.ref }}.
# we have to repeat ourselves here since the environment is not actually updated
# until the next step executes, so we can't access $TAG_NAME yet
run: |
echo "TAG_NAME=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
echo "MAJOR_VERSION=$(echo ${GITHUB_REF/refs\/tags\//} | cut -d'.' -f1)" >> $GITHUB_ENV
- name: Make sure we are pushing a tag...
if: ${{ !contains(github.ref,'refs/tags/') }}
run: false
# run: echo "TAG_NAME=0.0.0-test0" >> $GITHUB_ENV

- if: contains(github.ref, 'beta') || contains(github.ref, 'pre')
run: |
echo "NPM_TAG=beta" >> $GITHUB_ENV
echo "RELEASING=beta" >> $GITHUB_ENV
- if: ${{ !(contains(github.ref, 'beta') || contains(github.ref, 'pre')) }}
run: |
echo "NPM_TAG=latest" >> $GITHUB_ENV
echo "RELEASING=stable" >> $GITHUB_ENV
- name: match-tag-to-package-version
uses: geritol/match-tag-to-package-version@0.0.2
env:
TAG_PREFIX: refs/tags/ # Optional, default prefix refs/tags/

- name: Use Node.js 15.x
uses: actions/setup-node@v1
with:
node-version: 15.x
- name: Build Node.js package
run: |
npm install
node ./tools/build.js -t node
npm test
- name: Publish highlight.js to NPM
id: publish
uses: JS-DevTools/npm-publish@v1
with:
check-version: true
token: ${{ secrets.NPM_TOKEN }}
package: ./build/package.json
tag: ${{ env.NPM_TAG }}

- if: steps.publish.outputs.type != 'none'
run: |
echo "Version changed: ${{ steps.publish.outputs.old-version }} => ${{ steps.publish.outputs.version }}"
# if stable release
- name: Stable Release
if: env.RELEASING == 'stable'
run: echo "BRANCH_NAME=${MAJOR_VERSION}-stable" >> $GITHUB_ENV
# else (beta)
- name: Beta Release
if: env.RELEASING == 'beta'
run: echo "BRANCH_NAME=master" >> $GITHUB_ENV
- name: Confirm release is either stable or beta
if: ${{ !(env.RELEASING == 'stable' || env.RELEASING == 'beta') }}
run: |
echo We seem to be releasing `${RELEASING}`.
false
- name: Checkout cdn-release
uses: actions/checkout@v2
with:
repository: 'highlightjs/cdn-release'
path: 'cdn-release'
token: ${{ secrets.CDN_REPO_TOKEN }}
ref: ${{ env.BRANCH_NAME }}

- name: Build CDN package
run: node ./tools/build.js -t cdn :common

- name: Commmit & Push cdn-release ${{ env.TAG_NAME }}
working-directory: ./cdn-release
run: |
rm -r ./build
mv ../build/ ./build/
git config user.name github-actions
git config user.email github-actions@github.com
git add ./build/
git commit -m'Update to version ${{ env.TAG_NAME }}'
git tag ${TAG_NAME}
git push -f --atomic origin ${BRANCH_NAME} ${TAG_NAME}
- name: Publish cdn-assets to NPM
id: publish_cdn
uses: JS-DevTools/npm-publish@v1
with:
check-version: true
token: ${{ secrets.NPM_TOKEN }}
package: ./cdn-release/build/package.json
tag: ${{ env.NPM_TAG }}

# log.info('Updating CDN repo at %s' % settings.HLJS_CDN_SOURCE)
# run(['nodejs', 'tools/build.js', '--target', 'cdn', ':common'])
# os.chdir(settings.HLJS_CDN_SOURCE)
# run(['git', 'pull', '-f'])
# lines = run(['git', '--git-dir', os.path.join(settings.HLJS_CDN_SOURCE, '.git'), 'tag'])
# build_dir = os.path.join(settings.HLJS_CDN_SOURCE, 'build')
# if version in lines:
# log.info('Tag %s already exists in the local CDN repo' % version)
# else:
# if os.path.exists(build_dir):
# shutil.rmtree(build_dir)
# shutil.move(os.path.join(settings.HLJS_SOURCE, 'build'), build_dir)
# run(['git', 'add', '.'])
# run(['git', 'commit', '-m', 'Update to version %s' % version])
# run(['git', 'tag', version])
# run(['git', 'push'])
# run(['git', 'push', '--tags'])
# npm_publish(build_dir)
# os.chdir(settings.HLJS_SOURCE)
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ extra/

# misc
/work
/website

0 comments on commit 7c7f496

Please sign in to comment.