Skip to content

Commit

Permalink
added workflow for publish on conda
Browse files Browse the repository at this point in the history
  • Loading branch information
Xemin0 committed Oct 16, 2023
1 parent 1733cb5 commit ff5b90d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: build_and_publish_conda

on:
release:
types: [published]


jobs:
publish:
runs-on: MacOS-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: publish-to-conda
uses: MichaelsJP/conda-package-publish-action@v1.0.0
with:
subDir: './conda-recipe'
AnacondaToken: ${{ secrets.ANACONDA_TOKEN }}
platforms: 'all'
override: true
dry_run: false
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Then each button literally does what it says.
### Major Features
- The values and the background colors of symmetric entry pairs are dynamically synchronized.
- The whole table's colors are updated for each change in any entry value
- The color dynamically assigned to each entry is determined based on its relative position with respect to the min_max values imported from XML
- The color dynamically assigned to each entry is determined based on its relative position with respect to the min_max values of the current table

### Example Image of the Widget
<img src="./images/example_v02_2.png">
Expand Down

0 comments on commit ff5b90d

Please sign in to comment.