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 da04910 commit f61ee75Copy full SHA for f61ee75
.github/workflows/cd.yaml
@@ -18,7 +18,6 @@ jobs:
18
- uses: actions/checkout@v2
19
20
- name: Get the arch name
21
- shell: bash
22
run: |
23
echo "ARCH_NAME=$(uname -m)" >> $GITHUB_ENV
24
@@ -32,7 +31,14 @@ jobs:
32
31
uses: actions/download-artifact@v2
33
with:
34
name: "distrod_wsl_launcher-${{ env.ARCH_NAME }}"
35
- path: assets
+ path: "distrod_wsl_launcher-${{ env.ARCH_NAME }}"
+
36
+ - name: Zip distrod_wsl_launcher
37
+ run: |
38
+ sudo apt update
39
+ sudo apt install -y zip
40
+ zip -r "distrod_wsl_launcher-${{ env.ARCH_NAME }}.zip" "distrod_wsl_launcher-${{ env.ARCH_NAME }}"
41
+ mv "distrod_wsl_launcher-${{ env.ARCH_NAME }}.zip" assets/
42
43
- name: Read the commit message and use it as a body of the new release
44
shell: bash
0 commit comments