Skip to content

Commit f407f07

Browse files
committed
Upload all VSIX in one step
1 parent 921d0cf commit f407f07

File tree

1 file changed

+10
-57
lines changed

1 file changed

+10
-57
lines changed

.github/workflows/release-ci.yml

Lines changed: 10 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -36,60 +36,13 @@ jobs:
3636
uses: softprops/action-gh-release@v1
3737
with:
3838
token: ${{ secrets.GITHUB_TOKEN }}
39-
files: ./csharp-${{ env.VERSION }}-darwin-arm64.vsix
40-
41-
- name: Upload release build (darwin-x64)
42-
id: upload-release-asset-darwin-x64
43-
uses: softprops/action-gh-release@v1
44-
with:
45-
token: ${{ secrets.GITHUB_TOKEN }}
46-
files: ./csharp-${{ env.VERSION }}-darwin-x64.vsix
47-
48-
- name: Upload release build (linux-arm64)
49-
id: upload-release-asset-linux-arm64
50-
uses: softprops/action-gh-release@v1
51-
with:
52-
token: ${{ secrets.GITHUB_TOKEN }}
53-
files: ./csharp-${{ env.VERSION }}-linux-arm64.vsix
54-
55-
- name: Upload release build (linux-x64)
56-
id: upload-release-asset-linux-x64
57-
uses: softprops/action-gh-release@v1
58-
with:
59-
token: ${{ secrets.GITHUB_TOKEN }}
60-
files: ./csharp-${{ env.VERSION }}-linux-x64.vsix
61-
62-
- name: Upload release build (alpine-arm64)
63-
id: upload-release-asset-alpine-arm64
64-
uses: softprops/action-gh-release@v1
65-
with:
66-
token: ${{ secrets.GITHUB_TOKEN }}
67-
files: ./csharp-${{ env.VERSION }}-alpine-arm64.vsix
68-
69-
- name: Upload release build (alpine-x64)
70-
id: upload-release-asset-alpine-x64
71-
uses: softprops/action-gh-release@v1
72-
with:
73-
token: ${{ secrets.GITHUB_TOKEN }}
74-
files: ./csharp-${{ env.VERSION }}-alpine-x64.vsix
75-
76-
- name: Upload release build (win32-arm64)
77-
id: upload-release-asset-win32-arm64
78-
uses: softprops/action-gh-release@v1
79-
with:
80-
token: ${{ secrets.GITHUB_TOKEN }}
81-
files: ./csharp-${{ env.VERSION }}-win32-arm64.vsix
82-
83-
- name: Upload release build (win32-ia32)
84-
id: upload-release-asset-win32-ia32
85-
uses: softprops/action-gh-release@v1
86-
with:
87-
token: ${{ secrets.GITHUB_TOKEN }}
88-
files: ./csharp-${{ env.VERSION }}-win32-ia32.vsix
89-
90-
- name: Upload release build (win32-x64)
91-
id: upload-release-asset-win32-x64
92-
uses: softprops/action-gh-release@v1
93-
with:
94-
token: ${{ secrets.GITHUB_TOKEN }}
95-
files: ./csharp-${{ env.VERSION }}-win32-x64.vsix
39+
files: |
40+
./csharp-${{ env.VERSION }}-darwin-arm64.vsix
41+
./csharp-${{ env.VERSION }}-darwin-x64.vsix
42+
./csharp-${{ env.VERSION }}-linux-arm64.vsix
43+
./csharp-${{ env.VERSION }}-linux-x64.vsix
44+
./csharp-${{ env.VERSION }}-alpine-arm64.vsix
45+
./csharp-${{ env.VERSION }}-alpine-x64.vsix
46+
./csharp-${{ env.VERSION }}-win32-arm64.vsix
47+
./csharp-${{ env.VERSION }}-win32-ia32.vsix
48+
./csharp-${{ env.VERSION }}-win32-x64.vsix

0 commit comments

Comments
 (0)