Skip to content

Commit b95c543

Browse files
committed
fix script
1 parent 0994ecd commit b95c543

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ env:
1111
evomaster-version: 1.6.2
1212
jdk: 17
1313
retention-days: 1
14-
installer-windows: evomaster-${evomaster-version}.msi
15-
installer-osx: evomaster-${evomaster-version}.dmg
16-
installer-debian: evomaster-${evomaster-version}-1_amd64.deb
14+
## Doesn't work, ie, use env in env
15+
# installer-windows: evomaster-${evomaster-version}.msi
16+
# installer-osx: evomaster-${evomaster-version}.dmg
17+
# installer-debian: evomaster-${evomaster-version}-1_amd64.deb
1718

1819
jobs:
1920

@@ -65,7 +66,7 @@ jobs:
6566
uses: actions/upload-artifact@v3
6667
with:
6768
name: evomaster.msi
68-
path: release/${{env.installer-windows}}
69+
path: release/evomaster-${evomaster-version}.msi
6970
retention-days: ${{env.retention-days}}
7071
if-no-files-found: error
7172

@@ -90,7 +91,7 @@ jobs:
9091
uses: actions/upload-artifact@v3
9192
with:
9293
name: evomaster.dmg
93-
path: release/${{env.installer-osx}}
94+
path: release/evomaster-${evomaster-version}.dmg
9495
retention-days: ${{env.retention-days}}
9596
if-no-files-found: error
9697

@@ -115,7 +116,7 @@ jobs:
115116
uses: actions/upload-artifact@v3
116117
with:
117118
name: evomaster.deb
118-
path: release/${{env.installer-debian}}
119+
path: release/evomaster-${evomaster-version}-1_amd64.deb
119120
retention-days: ${{env.retention-days}}
120121
if-no-files-found: error
121122

@@ -163,7 +164,7 @@ jobs:
163164
fail_on_unmatched_files: true
164165
files: |
165166
evomaster.jar
166-
${{env.installer-windows}}
167-
${{env.installer-osx}}
168-
${{env.installer-debian}}
167+
evomaster-${evomaster-version}.msi
168+
evomaster-${evomaster-version}.dmg
169+
evomaster-${evomaster-version}-1_amd64.deb
169170

0 commit comments

Comments
 (0)