Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
replace minus icon with trash
Browse files Browse the repository at this point in the history
  • Loading branch information
monstajoe2002 committed Dec 2, 2023
1 parent 88ed7c5 commit f7bc201
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
48 changes: 48 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
on:
push:
branches:
- release/patch
release:
types:
- created
jobs:
merge:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "monstajoe2002"
- name: Merge to master
run: |
git fetch origin master
git checkout master
git merge --no-ff release/patch
git push origin master
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm install
publish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Publish
if: success() && startsWith(github.ref, 'refs/tags/')
run: npm run deploy\:patch
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
{
"command": "project-explorer.tree.delete",
"title": "Delete",
"icon": "$(remove)"
"icon": "$(trash)"
},
{
"command": "project-explorer.tree.rename",
Expand Down

0 comments on commit f7bc201

Please sign in to comment.