Skip to content

Commit 2d3f6ec

Browse files
[chore] skip ci for release tag build
1 parent f88db86 commit 2d3f6ec

4 files changed

Lines changed: 13 additions & 20 deletions

File tree

.github/workflows/electron-build.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
with:
4444
draft: true
4545
files: |
46-
dist/*.exe
47-
dist/*.zip
48-
dist/*.dmg
49-
dist/*.AppImage
50-
dist/*.snap
51-
dist/*.deb
52-
dist/*.rpm
53-
dist/*.tar.gz
54-
dist/*.yml
55-
dist/*.blockmap
46+
desktop/*.exe
47+
desktop/*.zip
48+
desktop/*.dmg
49+
desktop/*.AppImage
50+
desktop/*.snap
51+
desktop/*.deb
52+
desktop/*.rpm
53+
desktop/*.tar.gz
54+
desktop/*.yml
55+
desktop/*.blockmap
5656
env:
5757
GITHUB_TOKEN: ${{ secrets.RELEASE_NOTE_WRITE }}

.github/workflows/release-tag.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v4
1616
- name: Create Release for Tag
17-
id: release_tag
18-
uses: actions/create-release@v1
17+
run: echo "TODO: we have to create a Release notes genetor CI"
1918
env:
2019
RELEASE_NOTE_WRITE: ${{ secrets.RELEASE_NOTE_WRITE }}
21-
with:
22-
tag_name: ${{ github.ref }}
23-
release_name: ${{ github.ref }}
24-
body: |
25-
Please refer to [changelog.md](https://github.com/devlopersabbir/executeme/blob/${{ github.ref_name }}/changelog.md) for details

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@
3232
- [feat] Created a release notes ci/cd pipeline to automate our release version
3333
- [feat] Create electron builder CI for build various platform applicaiton
3434
- [feat] ShadcnUI added to our desktop application
35+
- [feat] Monaco editor setup with electron js
36+
- [feat] Code highlight & inte. is supported

desktop/src/preload/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import { contextBridge, ipcRenderer } from "electron";
22

3-
// Custom APIs for renderer
4-
const api = {};
5-
63
// Expose a function to the renderer to get Monaco's base path
74
// This is crucial for @monaco-editor/react to know where to load its *main* scripts from
85
contextBridge.exposeInMainWorld("monacoConfig", {

0 commit comments

Comments
 (0)