You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+5-5
Original file line number
Diff line number
Diff line change
@@ -10,13 +10,13 @@ jobs:
10
10
runs-on: ubuntu-latest
11
11
steps:
12
12
- name: Checkout
13
-
uses: actions/checkout@v3
13
+
uses: actions/checkout@v4
14
14
- name: Download artifacts
15
-
uses: actions/download-artifact@v3
15
+
uses: actions/download-artifact@v4
16
16
- name: Create release
17
17
run: |
18
-
tag=$(cat package/tag.txt)
19
-
imagetag=$(cat package/imagetag.txt)
20
-
gh release create "${tag::-1}" --notes "Arch Linux WSL installer based on the Docker image \`archlinux:${imagetag::-1}\`" ./package/x64/Release/DistroLauncher-Appx/*.msix ./package/DistroLauncher-Appx_TemporaryKey.crt
18
+
imagetag=$(cat artifacts/imagetag.txt)
19
+
tag="${imagetag#base-}"
20
+
gh release create "${tag}" --notes "Arch Linux WSL modern distribution based on the Docker image \`archlinux:${imagetag}\`" ./artifacts/archlinux.wsl.gz ./artifacts/DistributionInfo.json
0 commit comments