We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e6b96f commit 5f96e99Copy full SHA for 5f96e99
.github/workflows/publish.yml
@@ -41,6 +41,7 @@ jobs:
41
42
- name: setup clojure
43
uses: DeLaGuardo/[email protected]
44
+ if: matrix.config.profile != 'windows'
45
with:
46
lein: 2.11.2
47
@@ -61,10 +62,9 @@ jobs:
61
62
- name: build ${{ matrix.config.name }}
63
if: matrix.config.profile == 'windows'
64
run: |
- $GITHUB_REF_NAME = $env:GITHUB_REF_NAME
65
- $VERSION = $GITHUB_REF_NAME -replace '^v', ''
66
- lein set-version "$VERSION"
67
- lein native-image
+ curl https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein.bat -O lein.bat
+ .\lein.bat self-install
+ .\lein.bat native-image
68
69
- name: move jar ${{ matrix.config.name }}
70
if: matrix.config.profile == 'jar'
0 commit comments