Release eslint-plugin-sonarjs #17
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 eslint-plugin-sonarjs | |
# Workflow runs when manually triggered using the UI or API. | |
on: | |
workflow_dispatch: | |
# Inputs the workflow accepts. | |
inputs: | |
release_version: | |
description: 'Version (semver)' | |
required: true | |
jobs: | |
publish: | |
permissions: | |
id-token: write # required for SonarSource/vault-action-wrapper | |
runs-on: ubuntu-latest | |
env: | |
RELEASE_TAG: ${{ github.event.inputs.release_version }} | |
NPM_REPOSITORY: "sonarsource-npm-public" | |
SCOPE: "" | |
PACKAGE: "eslint-plugin-sonarjs" | |
steps: | |
- name: Vault | |
id: secrets | |
uses: SonarSource/vault-action-wrapper@v3 | |
with: | |
secrets: | |
development/kv/data/repox url | repox_url; | |
development/artifactory/token/{REPO_OWNER_NAME_DASH}-qa-deployer access_token | qa_deployer_access_token; | |
development/artifactory/token/{REPO_OWNER_NAME_DASH}-promoter access_token | promoter_access_token; | |
development/kv/data/npmjs sonartech_npm_token | npm_token; | |
- name: Setup JFrog for deploy | |
uses: SonarSource/jfrog-setup-wrapper@907e87c3d2081a98d2ab8cb03284ee6711f1ee83 # tag=3.2.3 | |
with: | |
jfrogAccessToken: ${{ fromJSON(steps.secrets.outputs.vault).qa_deployer_access_token }} | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: cp .github/workflows/.npmrc .npmrc | |
- run: cp .github/workflows/.npmrc packages/jsts/src/rules/.npmrc | |
- name: Publish npm package | |
env: | |
NPM_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).npm_token }} | |
run: | | |
jfrog rt npm-config --repo-resolve npm --repo-deploy sonarsource-npm-public-qa | |
jfrog rt npm-ci | |
cd packages/jsts/src/rules/ | |
npm run ci | |
npm run build | |
cp .npmrc ./lib/.npmrc | |
cd lib/ | |
npm publish | |
jfrog rt npm-publish --build-name=eslint-plugin-sonarjs --build-number=${{ github.event.inputs.release_version }} | |
jfrog rt build-publish eslint-plugin-sonarjs ${{ github.event.inputs.release_version }} | |
- name: Promote npm package | |
env: | |
REPOX_URL: ${{ fromJSON(steps.secrets.outputs.vault).repox_url }} | |
PROMOTE_ACCESS_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).promoter_access_token }} | |
run: | | |
jfrog config add repox --artifactory-url $REPOX_URL --access-token $PROMOTE_ACCESS_TOKEN | |
jfrog config use repox | |
jfrog rt bpr --status it-passed $PACKAGE $RELEASE_TAG sonarsource-npm-public-builds | |
jfrog rt bpr --status released $PACKAGE $RELEASE_TAG sonarsource-npm-public-releases |