Merge pull request #639 from dlang-community/fix-ci-release
make CI artifacts inside bin folder
This commit is contained in:
commit
0b51439635
|
@ -65,11 +65,12 @@ jobs:
|
||||||
- name: Package the artificats
|
- name: Package the artificats
|
||||||
if: github.event_name == 'release' && contains(matrix.dc, 'ldc')
|
if: github.event_name == 'release' && contains(matrix.dc, 'ldc')
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
working-directory: bin
|
||||||
run: |
|
run: |
|
||||||
if ("${{ matrix.os }}" -like 'windows*') {
|
if ("${{ matrix.os }}" -like 'windows*') {
|
||||||
7z a -tzip dcd.zip dcd-client.exe dcd-server.exe
|
7z a -tzip ..\dcd.zip dcd-client.exe dcd-server.exe
|
||||||
} else {
|
} else {
|
||||||
tar -cvzf dcd.tar.gz dcd-client dcd-server
|
tar -cvzf ../dcd.tar.gz dcd-client dcd-server
|
||||||
}
|
}
|
||||||
|
|
||||||
# Release
|
# Release
|
||||||
|
|
Loading…
Reference in New Issue