Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Commit

Permalink
fix publication
Browse files Browse the repository at this point in the history
  • Loading branch information
submarcos committed Jun 21, 2023
1 parent 6dba8b0 commit 858a5e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,7 @@ jobs:
run: |
npm ci --no-audit
- name: Copy JSON to publish
run: |
npm run copyjson
- name: Publish to NPMJS
run: npm publish
run: npm run publish:ci
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@terralego/core",
"version": "1.31.7",
"version": "1.31.8",
"private": false,
"license": "ISC",
"dependencies": {
Expand Down Expand Up @@ -50,8 +50,8 @@
"build": "run-s -l drop-dist babel sass fixcss copyscss",
"build-local": "run-s build copyjson",
"build:local": "run-s build copyjson",
"prepublishOnly": "cd dist",
"publish:manual": "npm run build-local && npm publish --access public",
"publish:ci": "npm run copyjson && cd dist && npm publish --access public",
"publish:manual": "npm run build-local && cd dist && npm publish --access public",
"version": "git changelog -n -t $npm_package_version && git add CHANGELOG.md",
"drop-dist": "rimraf dist",
"copyscss": "cpx 'src/**/*.{scss,svg}' dist",
Expand Down

0 comments on commit 858a5e6

Please sign in to comment.