Skip to content

Commit

Permalink
Publish all modules to npmjs
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Jan 23, 2024
1 parent 6203839 commit 1399d74
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 13 deletions.
32 changes: 23 additions & 9 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,30 @@ jobs:
run: |
echo "approvers=$(cat .github/CODEOWNERS | grep @ | tr -d '* ' | sed 's/@/,/g' | sed 's/,//1')" >> $GITHUB_OUTPUT
echo "version=$(cat package.json | jq .version | tr -d "\"")" >> $GITHUB_OUTPUT
- uses: trstringer/manual-approval@v1
# - uses: trstringer/manual-approval@v1
# with:
# secret: ${{ github.TOKEN }}
# approvers: ${{ steps.get_data.outputs.approvers }}
# minimum-approvals: 2
# issue-title: 'Release opensearch-cluster-cdk : ${{ steps.get_data.outputs.version }}'
# issue-body: "Please approve or deny the release of opensearch-cluster-cdk. **VERSION**: ${{ steps.get_data.outputs.version }} **TAG**: ${{ github.ref_name }} **COMMIT**: ${{ github.sha }}"
# exclude-workflow-initiator-as-approver: true
- name: Set up node
uses: actions/setup-node@v3
with:
secret: ${{ github.TOKEN }}
approvers: ${{ steps.get_data.outputs.approvers }}
minimum-approvals: 2
issue-title: 'Release opensearch-cluster-cdk : ${{ steps.get_data.outputs.version }}'
issue-body: "Please approve or deny the release of opensearch-cluster-cdk. **VERSION**: ${{ steps.get_data.outputs.version }} **TAG**: ${{ github.ref_name }} **COMMIT**: ${{ github.sha }}"
exclude-workflow-initiator-as-approver: true
- name: Release
node-version: 16.16.0
registry-url: 'https://registry.npmjs.org'
- name: Build and package
run: |
npm install && npm run build
npm pack
filename=`ls | grep opensearch-project-opensearch-cluster-cdk`
mkdir publish-cluster-cdk && mv $filename publish-cluster-cdk/opensearch-cluster-cdk.tar.gz
tar -cvf artifacts.tar.gz publish-cluster-cdk
- name: Draft a release
uses: softprops/action-gh-release@v1
with:
draft: true
generate_release_notes: true
generate_release_notes: true
files: |
artifacts.tar.gz
5 changes: 4 additions & 1 deletion jenkins/release.jenkinsFile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@ standardReleasePipelineWithGenericTrigger(
tokenIdCredential: 'jenkins-opensearch-cluster-cdk-generic-webhook-token',
causeString: 'A tag was cut on opensearch-project/opensearch-cluster-cdk repository causing this workflow to run',
publishRelease: true) {
publishToNpm(publicationType: 'github')
publishToNpm(
publicationType: 'artifact',
artifactPath: "${WORKSPACE}/publish-cluster-cdk/opensearch-cluster-cdk.tar.gz"
)
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opensearch-project/opensearch-cluster-cdk",
"version": "1.0.0",
"version": "1.0.1",
"bin": {
"cdk_v2": "bin/app.js"
},
Expand Down

0 comments on commit 1399d74

Please sign in to comment.