Skip to content

Commit

Permalink
📚 [doc] update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
mightbesimon committed Dec 11, 2022
1 parent 009cfd5 commit 2fb745f
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 12 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: publish
name: publish 🚀

on:
push:
tags:
- v*.*.*

env:
PYTHON_VERSION: '3.8.9'
PYTHON_VERSION: '3.9'

jobs:
build:
name: 🔧 build
name: build 🔧
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -31,12 +31,14 @@ jobs:
publish:
needs: build
name: 🚀 publish
name: publish 🚀
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: build
path: .
- run: echo VERSION=${GITHUB_REF#refs/tags/v} >> $GITHUB_ENV
- run: npx vsce publish ${{ env.VERSION }} -p ${{ secrets.VSCE_PAT }} --no-git-tag-version
- run: >
npx vsce publish ${GITHUB_REF#refs/tags/v}
-p ${{ secrets.VSCE_PAT }}
--no-git-tag-version
18 changes: 15 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

> Author: [mightbesimon](https://github.com/mightbesimon)
## v1.0.0 - 31 Oct 2022
## v1.1.1 - 12 December 2022

- editor rulers
- terminal logs
- 📚 [doc]: update badges and changelogs

## v1.1.0 - 24 November 2022

- 🚀 [CI/CD]: generate theme json file at build
- ✨ [feature]: terminal cursor to orange
- ✨ [feature]: orange button text to dark

## v1.0.0 - 31 October 2022

- ✨ [feature]: editor rulers
- ✨ [feature]: terminal logs

## v0.99.99 — 27 July 2022

Initial pre-release

- ✨ [feature]: marinana theme ported from sublime
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mariana ![version](https://img.shields.io/visual-studio-marketplace/v/mightbesimon.mariana-sublime?label=)

[![sponsor](https://img.shields.io/github/sponsors/mightbesimon?color=red&label=Sponsor&logo=github)](https://github.com/sponsors/mightbesimon)
[![sponsor](https://img.shields.io/badge/-Sponsor_Us_-%23d73a49)](https://github.com/sponsors/mightbesimon)
![downloads](https://img.shields.io/vscode-marketplace/i/mightbesimon.mariana-sublime?color=white&label=&logo=visualstudiocode&logoColor=blue)
![publish](https://github.com/mightbesimon/vscode-mariana/actions/workflows/publish.yml/badge.svg)

Expand Down
19 changes: 17 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,29 @@
"markdown": "github",
"badges": [
{
"url": "https://github.com/mightbesimon/vscode-mariana/actions/workflows/publish.yml/badge.svg",
"url": "https://img.shields.io/visual-studio-marketplace/v/mightbesimon.mariana-sublime?label=",
"href": "https://github.com/mightbesimon/vscode-mariana/tags",
"description": "version"
},
{
"url": "https://img.shields.io/vscode-marketplace/i/mightbesimon.mariana-sublime?color=white&label=&logo=visualstudiocode&logoColor=blue",
"href": "https://mightbesimon.com",
"description": "downloads"
},
{
"url": "https://img.shields.io/badge/-Sponsor_Us_-%23d73a49",
"href": "https://github.com/sponsors/mightbesimon",
"description": "sponsor"
},
{
"url": "https://github.com/mightbesimon/vscode-mariana/actions/workflows/publish.yml/badge.svg",
"href": "https://github.com/mightbesimon/vscode-mariana",
"description": "publish"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mightbesimon/vscode-mariana/"
"url": "https://github.com/mightbesimon/vscode-mariana"
},
"sponsor": {
"url": "https://github.com/sponsors/mightbesimon"
Expand Down

0 comments on commit 2fb745f

Please sign in to comment.