-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
maybe i cna badge by installing from github directly (#99)
* remove badge because it's causing too much work to maintain * Update .gitattributes * Revert "remove badge because it's causing too much work to maintain" This reverts commit 17f19cb. * how about this
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
*text = auto | ||
# SCM syntax highlighting | ||
pixi.lock linguist-language=YAML linguist-generated=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,13 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
- name: Install package | ||
run: | | ||
pip install git+https://github.com/zktuong/ktplotspy.git | ||
- id: version | ||
name: Use git to get version | ||
name: Get version | ||
run: | | ||
echo "version=$(git describe --dirty --tags --long)" >> $GITHUB_OUTPUT | ||
echo "version=$(python -m pip show ktplotspy | grep Version | awk '{print $2}')" >> $GITHUB_OUTPUT | ||
- name: version badge | ||
uses: RubbaBoy/[email protected] | ||
with: | ||
|