Skip to content

Commit

Permalink
Update kv package to test CD
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanH-AT committed Dec 29, 2022
1 parent caac365 commit 221b7bd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:
- run: |
echo "# Deployment Summary" >> $GITHUB_STEP_SUMMARY
echo "Date: $(date) " >> $GITHUB_STEP_SUMMARY
echo "Run ID: ${{ github.run_id }}" >> $GITHUB_STEP_SUMMARY
echo "Run Number: ${{ github.run_number }}" >> $GITHUB_STEP_SUMMARY
echo "Run Attempt: ${{ github.run_attempt }}" >> $GITHUB_STEP_SUMMARY
echo "Run ID: ${{ github.run_id }} " >> $GITHUB_STEP_SUMMARY
echo "Run Number: ${{ github.run_number }} " >> $GITHUB_STEP_SUMMARY
echo "Run Attempt: ${{ github.run_attempt }} " >> $GITHUB_STEP_SUMMARY
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'

- run: |
echo "Node Version: $(node --version)" - NPM Version: $(npm --version) >> $GITHUB_STEP_SUMMARY
echo "Node Version: $(node --version) - NPM Version: $(npm --version) " >> $GITHUB_STEP_SUMMARY
echo "---" >> $GITHUB_STEP_SUMMARY
echo "Package Name: **${{ inputs.package-name }}** " >> $GITHUB_STEP_SUMMARY
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
echo "unescaped=$changelog1" >> $GITHUB_OUTPUT
echo "doubleescaped=$changelog2" >> $GITHUB_OUTPUT
echo "---" >> $GITHUB_STEP_SUMMARY
echo "${{steps.changelog.outputs.doubleescaped}}" >> $GITHUB_STEP_SUMMARY
echo $escaped >> $GITHUB_STEP_SUMMARY
- name: Github Release
id: release
Expand Down
4 changes: 4 additions & 0 deletions packages/kv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

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

## [0.3.1]

- Test release

## [0.3.0]

- Re-wrote keyvalue parser and improved tokenizer
Expand Down
2 changes: 1 addition & 1 deletion packages/kv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sourcelib/kv",
"version": "0.3.0",
"version": "0.3.1",
"description": "Source Engine KeyValue file parser and tokenizer library",
"main": "lib/main.js",
"scripts": {
Expand Down

0 comments on commit 221b7bd

Please sign in to comment.