Skip to content

Commit 2789a9a

Browse files
committed
semver
1 parent f473ade commit 2789a9a

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

.github/workflows/release.yaml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- "main"
1515

1616
env:
17-
PROJECT_NAME: http-server
17+
PROJECT_NAME: http-server-rs
1818

1919
jobs:
2020
test:
@@ -148,23 +148,23 @@ jobs:
148148
149149
echo "VERSION=$TAG" >> "$GITHUB_OUTPUT"
150150
151-
publish-npm-package:
152-
name: "🔄 Publish NPM Package"
153-
runs-on: ubuntu-24.04
154-
needs:
155-
- publish_github_release
156-
steps:
157-
- uses: actions/checkout@v4
158-
- run: eval $(curl -sSf sh.davidalsh.com/nodejs.sh | sh)
159-
- env:
160-
NPM_VER: ${{needs.publish_github_release.outputs.VERSION}}
161-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
162-
run: |
163-
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> $HOME/.npmrc
164-
echo "GH_TAG: ${NPM_VER}"
165-
echo "NPM_VER: ${NPM_VER}"
166-
node .github/scripts/string-replace.mjs ./npm/package.json "0.0.0-local" "$NPM_VER"
167-
cp ./README.md ./npm/README.md
168-
cd npm
169-
echo "$GH_TAG" > tag
170-
npm publish --access=public
151+
# publish-npm-package:
152+
# name: "🔄 Publish NPM Package"
153+
# runs-on: ubuntu-24.04
154+
# needs:
155+
# - publish_github_release
156+
# steps:
157+
# - uses: actions/checkout@v4
158+
# - run: eval $(curl -sSf sh.davidalsh.com/nodejs.sh | sh)
159+
# - env:
160+
# NPM_VER: ${{needs.publish_github_release.outputs.VERSION}}
161+
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
162+
# run: |
163+
# echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> $HOME/.npmrc
164+
# echo "GH_TAG: ${NPM_VER}"
165+
# echo "NPM_VER: ${NPM_VER}"
166+
# node .github/scripts/string-replace.mjs ./npm/package.json "0.0.0-local" "$NPM_VER"
167+
# cp ./README.md ./npm/README.md
168+
# cd npm
169+
# echo "$GH_TAG" > tag
170+
# npm publish --access=public

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "http-server"
2+
name = "http-server-rs"
33
version = "0.1.0"
44
edition = "2021"
55

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project_name := "http-server"
1+
project_name := "http-server-rs"
22
profile := env_var_or_default("profile", "debug")
33

44
os := \

0 commit comments

Comments
 (0)