Update chen (#167) #102
Workflow file for this run
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: Release npm package | |
on: | |
push: | |
tags: | |
- 'v*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
pkg: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '23.x' | |
registry-url: https://registry.npmjs.org/ | |
- uses: coursier/cache-action@v6 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- uses: sbt/setup-sbt@v1 | |
- name: Release | |
run: | | |
sudo apt update -y | |
sudo apt install -y zlib1g php-zip | |
sbt scalafmtCheck stage createDistribution | |
sha512sum target/atom.zip > target/atom.zip.sha512 | |
npm config set //npm.pkg.github.com/:_authToken=$GITHUB_TOKEN | |
npm config set //registry.npmjs.org/:_authToken=$NPMJS_AUTH_TOKEN | |
cd wrapper/nodejs | |
bash build.sh | |
echo "appthreat:registry=https://npm.pkg.github.com" > ~/.npmrc | |
npm publish --access=public --@appthreat:registry='https://npm.pkg.github.com' | |
echo "appthreat:registry=https://registry.npmjs.org" > ~/.npmrc | |
npm publish --provenance --access=public --@appthreat:registry='https://registry.npmjs.org' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPMJS_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |