Incorporates 37 upstream commits from gchq/CyberChef master including: - Fix: Move Magic checks from Escape to Unescape Unicode Characters (#2195) - Paste spreadsheets as text (#2200) - Fix Roboto Mono font (#2199) - Fix return of buffer for PNG QR image generation (#2125) - Update JIMP (#2171) - Bump v10.22.1 (#2193) - Bump v10.22.0 (#2189) - Fixed Percent delimiter for hex encoding (#2137) - Added ability to paste Images from Clipboard (#1876) - Quoted Printable improvements (#2186) - Fix freeze when output text decoding fails (#1573) - Fix import operations with special chars (#1040) - Add Bech32 encode/decode operations - Various bug fixes and improvements Conflict resolution: - Workflow files: kept Node 24 + actions@v4 (local upgrade) - package.json: kept jsonwebtoken 9.0.0, fixJimpModule postinstall, added upstream 'tag' script - package-lock.json: kept local version (consistent with jimp 1.6.0 install) - sitemap.mjs: kept modern 'with' import assertion syntax - Code.mjs: kept escaped curly brace regex for Node 24 compatibility - newMinorVersion.mjs: added upstream ignoredAuthors constant https://claude.ai/code/session_011xozAMdxys1JF7nLRQsMtg
127 lines
3.1 KiB
YAML
127 lines
3.1 KiB
YAML
name: "Releases"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
REGISTRY_USER: ${{ github.actor }}
|
|
REGISTRY_PASSWORD: ${{ github.token }}
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
main:
|
|
permissions:
|
|
packages: write
|
|
contents: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set node version
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
registry-url: "https://registry.npmjs.org"
|
|
|
|
- name: Install
|
|
run: |
|
|
export DETECT_CHROMEDRIVER_VERSION=true
|
|
npm ci
|
|
npm run setheapsize
|
|
|
|
- name: Lint
|
|
run: npx grunt lint
|
|
|
|
- name: Unit Tests
|
|
run: |
|
|
npm test
|
|
npm run testnodeconsumer
|
|
|
|
- name: Production Build
|
|
run: npx grunt prod
|
|
|
|
- name: UI Tests
|
|
run: |
|
|
sudo apt-get install xvfb
|
|
xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Image Metadata
|
|
id: image-metadata
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
tags: |
|
|
type=semver,pattern={{major}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
type=semver,pattern={{version}}
|
|
|
|
- name: Log in to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ env.REGISTRY_USER }}
|
|
password: ${{ env.REGISTRY_PASSWORD }}
|
|
|
|
- name: Publish to GHCR
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: ${{ steps.image-metadata.outputs.tags }}
|
|
labels: ${{ steps.image-metadata.outputs.labels }}
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
- name: Upload Release Assets
|
|
id: upload-release-assets
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: build/prod/*.zip
|
|
tag: ${{ github.ref }}
|
|
overwrite: true
|
|
file_glob: true
|
|
body: "See the [CHANGELOG](https://github.com/gchq/CyberChef/blob/master/CHANGELOG.md) and [commit messages](https://github.com/gchq/CyberChef/commits/master) for details."
|
|
|
|
npm-publish:
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
needs: main
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set node version
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
registry-url: "https://registry.npmjs.org"
|
|
|
|
- name: Install
|
|
run: npm ci
|
|
|
|
- name: Create machine generated files
|
|
run: npm run node
|
|
|
|
- name: Reset node version ready for publish
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
registry-url: "https://registry.npmjs.org"
|
|
|
|
- name: Publish to NPM
|
|
run: npm publish
|