Skip to content

Commit

Permalink
release: v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
emekaorji committed Feb 17, 2024
1 parent 2e4a32b commit 81fc788
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release
on:
push:
branches:
- main

jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Install dependencies
run: pnpm i

- name: Package Extension
run: vsce package --no-dependencies

- name: Publish Packaged Extension
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
run: vsce publish -p $VSCE_TOKEN --no-dependencies
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## v0.1.1 (2024-02-18)

## v1.0.6 (2023-12-04)

[compare changes](https://github.com/emekaorji/speed-test/compare/v1.0.5...v1.0.6 '2023-12-04')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openssl-keygen",
"displayName": "OpenSSL Keygen",
"version": "0.1.0",
"version": "0.1.1",
"description": "Generate OpenSSL secret key for your application",
"publisher": "coderabbi",
"private": true,
Expand Down

0 comments on commit 81fc788

Please sign in to comment.