Skip to content

Commit

Permalink
Merge pull request #5 from contentstack/fix/release
Browse files Browse the repository at this point in the history
fix: release workflow
  • Loading branch information
aman19K authored Jan 16, 2025
2 parents 094c2a0 + a1d4fab commit 205d771
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
- name: Upload dist
uses: actions/[email protected]
with:
name: lib
path: lib
name: dist
path: dist

release:
name: Download dist and release
Expand Down
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.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentstack/cli-launch",
"version": "1.4.0",
"version": "1.4.1",
"description": "Launch related operations",
"author": "Contentstack CLI",
"bin": {
Expand Down Expand Up @@ -88,8 +88,8 @@
"prepack-bkp": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"build": "npm run clean && shx rm -rf lib && tsc -b",
"clean": "rm -rf ./lib tsconfig.tsbuildinfo oclif.manifest.json",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist tsconfig.build.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"prepack": "npm run build && oclif manifest && oclif readme",
"test:unit": "mocha --forbid-only \"test/unit/**/*.test.ts\"",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"declaration": true,
"importHelpers": true,
"module": "commonjs",
"outDir": "lib",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"target": "es2017",
Expand Down

0 comments on commit 205d771

Please sign in to comment.