forked from bellingard/sonar-scanner-npm
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jayadeep Kinavoor Madam <[email protected]>
- Loading branch information
1 parent
4e9f871
commit ad0071b
Showing
2 changed files
with
68 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
on: | ||
push: | ||
branches: | ||
- feat/jd/BUILD-5492-test-release | ||
|
||
jobs: | ||
publish: | ||
permissions: | ||
contents: read | ||
id-token: write # required for SonarSource/vault-action-wrapper | ||
runs-on: ubuntu-latest | ||
env: | ||
RELEASE_TAG: ${{ github.event.release.tag_name }} | ||
ARTIFACTORY_DEPLOY_REPO: sonarsource-npm-public-qa | ||
NPM_REPOSITORY: 'sonarsource-npm-public' | ||
SCOPE: '' | ||
PACKAGE: 'sonarqube-scanner' | ||
steps: | ||
- name: Vault | ||
id: secrets | ||
uses: SonarSource/vault-action-wrapper@v3 | ||
with: | ||
secrets: | ||
development/artifactory/token/SonarSource-sonar-scanner-npm-qa-deployer access_token | qa_deployer_access_token; | ||
development/artifactory/token/SonarSource-sonar-scanner-npm-promoter access_token | promoter_access_token; | ||
development/kv/data/npmjs sonartech_npm_token | npm_token; | ||
development/kv/data/repox artifactory_url | repox_url; | ||
- 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: mv .cirrus/npmrc .npmrc | ||
- name: Build npm package | ||
env: | ||
ARTIFACTORY_URL: ${{ fromJSON(steps.secrets.outputs.vault).repox_url }} | ||
ARTIFACTORY_ACCESS_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).qa_deployer_access_token }} | ||
run: | | ||
npm install | ||
npm run build | ||
- run: mv .github/workflows/.npmrc .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 $ARTIFACTORY_DEPLOY_REPO | ||
jfrog rt npm-ci | ||
# Skip publishing, test auth with npm install instead | ||
npm install | ||
jfrog rt npm-publish --build-name=$PACKAGE --build-number=${{ github.event.release.tag_name }} | ||
jfrog rt build-publish $PACKAGE ${{ github.event.release.tag_name }} | ||
- 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 }} | ||
CI: true | ||
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 |