Skip to content

Commit

Permalink
build: prepared publishing on npm
Browse files Browse the repository at this point in the history
  • Loading branch information
torbrenner authored and patrickskowronekdkfz committed Mar 14, 2024
1 parent e9a0faf commit c159f7d
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 4 deletions.
50 changes: 46 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,59 @@ jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: "Checkout Code"
uses: actions/checkout@v3
- name: "Setup NodeJS with cache (if available)"
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- run: npm ci
- name: "Download dependencies"
run: npm ci
- name: "Build @samply/lens"
run: npm run build
- name: "Publish @samply/lens"
run: cd dist/ && npm publish --access public
run: cd dist/lib/ && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

release:
needs: build-and-publish
runs-on: ubuntu-latest
steps:
- name: "Checkout Code"
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: "Update CHANGELOG"
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}

- name: "Create Release"
uses: ncipollo/release-action@v1
with:
allowUpdates: true
draft: false
makeLatest: true
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}

- name: "Commit CHANGELOG.md"
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: main
commit_message: 'docs: added changelog for ${{ github.ref_name }} [skip ci]'
file_pattern: CHANGELOG.md

- name: Sync Develop
run: |
git checkout main;
git checkout --track origin/develop;
git merge --ff-only main;
git push;
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/samply/lens.git"
},
"exports": {
".": {
"import": "./dist/lens.js",
Expand Down

0 comments on commit c159f7d

Please sign in to comment.