File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 45
45
with :
46
46
access_token : ${{ github.token }}
47
47
48
+ - name : Find the latest tag
49
+ id : find_latest_tag
50
+ uses : oprypin/find-latest-tag@dd2729fe78b0bb55523ae2b2a310c6773a652bd1 # 1.1.2
51
+ with :
52
+ repository : IntelPython/dpnp
53
+ releases-only : false
54
+
55
+ - name : Print latest tag
56
+ run : |
57
+ echo "Latest tag is ${{ steps.find_latest_tag.outputs.tag }}"
58
+
48
59
- name : Setup miniconda
49
60
uses : conda-incubator/setup-miniconda@d2e6a045a86077fb6cad6f5adf368e9076ddaa8d # v3.1.0
50
61
with :
57
68
58
69
- name : Install dpnp
59
70
run : |
60
- mamba install ${{ env.PACKAGE_NAME }} pytest ${{ env.CHANNELS }}
71
+ mamba install ${{ env.PACKAGE_NAME }}=${{ steps.find_latest_tag.outputs.tag }} pytest ${{ env.CHANNELS }}
61
72
env :
62
73
MAMBA_NO_LOW_SPEED_LIMIT : 1
63
74
You can’t perform that action at this time.
0 commit comments