Skip to content

Commit 86c8396

Browse files
committed
try to grab plugin artifact
1 parent 56e65a6 commit 86c8396

1 file changed

Lines changed: 40 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,46 @@ jobs:
125125
name: NUnit testing ${{ matrix.configuration }} build on ${{ matrix.os }}
126126
path: '**/TestResults/*.trx,*.trx'
127127
reporter: dotnet-trx
128-
128+
129+
- name: Grab TSQL plugin for 3.1
130+
id: download-artifact
131+
uses: dawidd6/action-download-artifact@v11
132+
with:
133+
github_token: ${{secrets.GITHUB_TOKEN}}
134+
repo: IVNSTN/TeamTools.Linter.TSQL
135+
workflow: ci.yml
136+
workflow_conclusion: completed
137+
branch: main
138+
name: TeamTools\.Linter\.TSQL-[\d.]+-Release-netstandard2\.0
139+
name_is_regexp: true
140+
path: ${{ env.OUTPUT_PATH }}/${{ matrix.configuration }}/netcoreapp3.1/Plugins/TeamTools.Linter.TSQL
141+
142+
- name: Grab TSQL plugin for 6.0
143+
id: download-artifact
144+
uses: dawidd6/action-download-artifact@v11
145+
with:
146+
github_token: ${{secrets.GITHUB_TOKEN}}
147+
repo: IVNSTN/TeamTools.Linter.TSQL
148+
workflow: ci.yml
149+
workflow_conclusion: completed
150+
branch: main
151+
name: TeamTools\.Linter\.TSQL-[\d.]+-Release-net6\.0
152+
name_is_regexp: true
153+
path: ${{ env.OUTPUT_PATH }}/${{ matrix.configuration }}/net6.0/Plugins/TeamTools.Linter.TSQL
154+
155+
- name: Grab TSQL plugin for 8.0
156+
id: download-artifact
157+
uses: dawidd6/action-download-artifact@v11
158+
with:
159+
github_token: ${{secrets.GITHUB_TOKEN}}
160+
repo: IVNSTN/TeamTools.Linter.TSQL
161+
workflow: ci.yml
162+
workflow_conclusion: completed
163+
branch: main
164+
name: TeamTools\.Linter\.TSQL-[\d.]+-Release-net8\.0
165+
name_is_regexp: true
166+
path: ${{ env.OUTPUT_PATH }}/${{ matrix.configuration }}/net8.0/Plugins/TeamTools.Linter.TSQL
167+
129168
- name: Upload build artifacts 3.1
130169
uses: actions/upload-artifact@v4
131170
if: ${{ matrix.configuration == 'Release' && matrix.os == 'windows-latest' && steps.build.conclusion == 'success' }}

0 commit comments

Comments
 (0)