Skip to content

Commit 221b7bd

Browse files
committed
Update kv package to test CD
1 parent caac365 commit 221b7bd

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/_deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
- run: |
2424
echo "# Deployment Summary" >> $GITHUB_STEP_SUMMARY
2525
echo "Date: $(date) " >> $GITHUB_STEP_SUMMARY
26-
echo "Run ID: ${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY
27-
echo "Run Number: ${{ github.run_number }}" >> $GITHUB_STEP_SUMMARY
28-
echo "Run Attempt: ${{ github.run_attempt }}" >> $GITHUB_STEP_SUMMARY
26+
echo "Run ID: ${{ github.run_id }} " >> $GITHUB_STEP_SUMMARY
27+
echo "Run Number: ${{ github.run_number }} " >> $GITHUB_STEP_SUMMARY
28+
echo "Run Attempt: ${{ github.run_attempt }} " >> $GITHUB_STEP_SUMMARY
2929
3030
- uses: actions/setup-node@v3
3131
with:
3232
node-version: '16.x'
3333
registry-url: 'https://registry.npmjs.org'
3434

3535
- run: |
36-
echo "Node Version: $(node --version)" - NPM Version: $(npm --version) >> $GITHUB_STEP_SUMMARY
36+
echo "Node Version: $(node --version) - NPM Version: $(npm --version) " >> $GITHUB_STEP_SUMMARY
3737
echo "---" >> $GITHUB_STEP_SUMMARY
3838
echo "Package Name: **${{ inputs.package-name }}** " >> $GITHUB_STEP_SUMMARY
3939
@@ -88,7 +88,7 @@ jobs:
8888
echo "unescaped=$changelog1" >> $GITHUB_OUTPUT
8989
echo "doubleescaped=$changelog2" >> $GITHUB_OUTPUT
9090
echo "---" >> $GITHUB_STEP_SUMMARY
91-
echo "${{steps.changelog.outputs.doubleescaped}}" >> $GITHUB_STEP_SUMMARY
91+
echo $escaped >> $GITHUB_STEP_SUMMARY
9292
9393
- name: Github Release
9494
id: release

packages/kv/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
The versions in this file adhere to [semantic versioning](https://semver.org/).
88

9+
## [0.3.1]
10+
11+
- Test release
12+
913
## [0.3.0]
1014

1115
- Re-wrote keyvalue parser and improved tokenizer

packages/kv/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sourcelib/kv",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Source Engine KeyValue file parser and tokenizer library",
55
"main": "lib/main.js",
66
"scripts": {

0 commit comments

Comments
 (0)