File tree Expand file tree Collapse file tree 6 files changed +38
-10
lines changed Expand file tree Collapse file tree 6 files changed +38
-10
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy mvesuvio main
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+
7
+ jobs :
8
+ build_conda_and_upload :
9
+ runs-on : ubuntu-latest
10
+ defaults :
11
+ run :
12
+ shell : bash -l {0}
13
+
14
+ steps :
15
+ - name : Checkout mvesuvio
16
+ uses : actions/checkout@v4
17
+ with :
18
+ fetch-depth : 0
19
+
20
+ - name : Setup Miniconda
21
+ uses : conda-incubator/setup-miniconda@v3
22
+ with :
23
+ miniforge-version : latest
24
+ activate-environment : vesuvio-dev
25
+ environment-file : vesuvio-dev.yml
26
+ auto-activate-base : false
27
+
28
+ - name : Publish conda package
29
+ uses : ./.github/actions/publish-conda-package
30
+ with :
31
+ label : main
32
+ token : ${{ secrets.ANACONDA_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Deploy mvesuvio nightly
2
2
3
3
on :
4
4
workflow_run :
5
- workflows : ["mvesuvio nightly build "]
5
+ workflows : ["Run tests nightly "]
6
6
branches : [main]
7
7
types :
8
8
- completed
Original file line number Diff line number Diff line change 1
- name : mvesuvio nightly build
1
+ name : Run tests nightly
2
2
3
3
on :
4
4
schedule :
File renamed without changes.
Original file line number Diff line number Diff line change @@ -67,21 +67,17 @@ fail_under = 0
67
67
show_missing = true
68
68
skip_empty = true
69
69
70
- [tool .versioningit ]
71
- default-version = " 0.0.0"
72
-
73
70
[tool .versioningit .vcs ]
74
71
method = " git"
75
- default-tag = " 0.0.0"
76
- match = [" v*" ]
72
+ default-tag = " 0.0"
77
73
78
74
[tool .versioningit .next-version ]
79
75
method = " minor"
80
76
81
77
[tool .versioningit .format ]
82
78
distance = " {version}.dev{distance}"
83
- dirty = " {version}.dev{distance} "
84
- distance-dirty = " {version}.dev{distance}"
79
+ dirty = " {version}+uncommitted "
80
+ distance-dirty = " {version}.dev{distance}+uncommitted "
85
81
86
82
[tool .versioningit .write ]
87
83
file = " src/mvesuvio/_version.py"
Original file line number Diff line number Diff line change 1
- __version__ = "0.0.0 "
1
+ __version__ = "0.1 "
You can’t perform that action at this time.
0 commit comments