Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release and publish

on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16

- name: Install the dependencies
run: npm i

- name: Install vsce
run: npm i -g vsce

- name: Publish to marketplace
run: vsce publish -p $PERSONAL_ACCESS_TOKEN
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.VSCE_PAT }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.8

#### Feature CI/CD github actions to deploy vscode extension to marketplace

## 1.0.7

#### Feature Clicking history collection from sidebar now fills up the UI in main request panel
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Simply click Open Menu button or open the Command Palette and type the command b

## 🗒 Changelog

#### Current version 1.0.7
#### Current version 1.0.8

Visit [here](https://github.com/REST-API-Client/API-Client-VSCode-Extension/blob/main/CHANGELOG.md) for a detailed release notes

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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"displayName": "REST API Client",
"icon": "icons/images/icon.png",
"description": "Simple and intuitive API Client made into a VSCode extension.",
"version": "1.0.7",
"version": "1.0.8",
"license": "MIT",
"bugs": {
"url": "https://github.com/REST-API-Client/API-Client-VSCode-Extension/issues"
Expand Down
2 changes: 1 addition & 1 deletion src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import vscode from "vscode";
import { COLLECTION, COMMAND, MESSAGE } from "./constants";
import ExtentionStateManager from "./ExtensionStateManger";
import MainWebViewPanel from "./MainWebViewPanel";
import SidebarWebViewPanel from "./SideBarWebViewPanel";
import SidebarWebViewPanel from "./SidebarWebViewPanel";

export async function activate(context) {
const StateManager = new ExtentionStateManager(context);
Expand Down
2 changes: 1 addition & 1 deletion webview/app.js → webview/App/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";

import MainPage from "./pages/MainPage";
import MainPage from "../pages/MainPage";

const App = () => {
return <MainPage />;
Expand Down