Skip to content

Commit

Permalink
Merge pull request #5 from alexravenna/fix/update-fix-pipeline
Browse files Browse the repository at this point in the history
Fix/update fix pipeline
  • Loading branch information
alexravenna committed Jun 17, 2023
2 parents 6b8dd57 + 133eba8 commit 422b8c9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-extension.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Taken from: https://github.com/microsoft/vscode-platform-specific-sample/blob/main/.github/workflows/ci.yml
# Adapted from: https://github.com/microsoft/vscode-platform-specific-sample/blob/main/.github/workflows/ci.yml
name: CI
on:
push:
branches:
- main
- "main"
tags:
- "*"
- "*v"

jobs:
build:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Publish
shell: pwsh
run: echo "target=${{ matrix.platform }}-${{ matrix.arch }}" >> $env:GITHUB_ENV
- run: npx vsce package --target ${{ env.target }}
- run: npx @vscode/vsce package --target ${{ env.target }}
- name: Upload .vsix to GitHub
uses: actions/upload-artifact@v2
with:
Expand All @@ -74,6 +74,6 @@ jobs:
if: success() && startsWith( github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v2
- run: npx vsce publish --packagePath $(find . -iname *.vsix)
- run: npx @vscode/vsce publish --packagePath $(find . -iname *.vsix)
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Structured according to [Keep a Changelog](http://keepachangelog.com/).

## [1.0.3] - 2023-06-17

### Fixed

- Fix publishing Action by changing readme badge provider

## [1.0.2] - 2023-06-10

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Monokai Dimmed+Vibrant

[![Version Badge](https://vsmarketplacebadges.dev/version/alexravenna.monokai-dimmed-vibrant.svg)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant)
[![Installs badge](https://vsmarketplacebadges.dev/installs/alexravenna.monokai-dimmed-vibrant.svg)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant)
[![Downloads badge](https://vsmarketplacebadges.dev/downloads/alexravenna.monokai-dimmed-vibrant.svg)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant)
[![Version Badge](https://img.shields.io/visual-studio-marketplace/v/alexravenna.monokai-dimmed-vibrant)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant)
[![Installs badge](https://img.shields.io/visual-studio-marketplace/i/alexravenna.monokai-dimmed-vibrant)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant)
[![Downloads badge](https://img.shields.io/visual-studio-marketplace/d/alexravenna.monokai-dimmed-vibrant)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant)

![Screenshot](screenshot.png)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "monokai-dimmed-vibrant",
"displayName": "Monokai Dimmed+Vibrant",
"description": "A color theme based on the gray-tone editor colors of Monokai Dimmed and the vibrant text colors of Monokai Vibrant",
"version": "1.0.2",
"version": "1.0.3",
"engines": {
"vscode": "^1.79.0"
},
Expand Down

0 comments on commit 422b8c9

Please sign in to comment.