Skip to content

Commit a4c909a

Browse files
committed
feat: refactor from Python to C#. XMLDiff going first
1 parent 9657521 commit a4c909a

File tree

7 files changed

+1228
-0
lines changed

7 files changed

+1228
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Release Please
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
17+
-
18+
name: Checkout repository
19+
id: checkout
20+
uses: actions/checkout@v4
21+
22+
- name: Release Please Action
23+
uses: google-github-actions/release-please-action@v3
24+
id: release
25+
with:
26+
release-type: simple # Specifies that it's a Python project
27+
# Optional configurations:
28+
# version-file: version.py # Specify the version file if different
29+
#bump-minor-pre-major: true
30+
initial-version: "0.2.12"
31+
monorepo-tags: true
32+
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}

0 commit comments

Comments
 (0)