BUILD-5492: test release workflow with existing package #13
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
on: | |
push: | |
branches: | |
- feat/jd/BUILD-5492-test-release | |
jobs: | |
publish_existing_package: | |
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' | |
RELEASE_TAG: '4.1.0.2272' | |
steps: | |
- name: Vault | |
id: secrets | |
uses: SonarSource/vault-action-wrapper@v3 | |
with: | |
secrets: | |
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).promoter_access_token }} | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Create local repository directory | |
id: local_repo | |
run: echo "dir=$(mktemp -d repo.XXXXXXXX)" >> $GITHUB_OUTPUT | |
- name: Download Artifacts | |
uses: SonarSource/gh-action_release/download-build@master | |
with: | |
build-number: ${{ steps.get_version.outputs.build }} | |
local-repo-dir: ${{ steps.local_repo.outputs.dir }} | |
remote-repo: sonarsource-npm-public-builds | |
flat-download: true | |
download-checksums: false | |
- name: Publish npm package | |
env: | |
NPM_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).npm_token }} | |
run: | | |
tree ${{ steps.local_repo.outputs.dir }} | |
npm ci | |
- 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 released $PACKAGE $RELEASE_TAG sonarsource-npm-public-releases |