Update action.yml

master
Vitalii Mikhailov 12 months ago committed by GitHub
parent 2ac3c0a91b
commit e67e5cee8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -89,6 +89,7 @@ runs:
NUGET_AUTH_TOKEN: ${{inputs.github-token}} NUGET_AUTH_TOKEN: ${{inputs.github-token}}
- name: Download DepotDownloader_${{inputs.depotdownloader-version}} - name: Download DepotDownloader_${{inputs.depotdownloader-version}}
id: download_depotdownloader
uses: robinraju/release-downloader@v1 uses: robinraju/release-downloader@v1
with: with:
repository: SteamRE/DepotDownloader repository: SteamRE/DepotDownloader
@ -98,7 +99,7 @@ runs:
- name: Extract DepotDownloader_${{inputs.depotdownloader-version}} - name: Extract DepotDownloader_${{inputs.depotdownloader-version}}
uses: DuckSoft/extract-7z-action@v1.0 uses: DuckSoft/extract-7z-action@v1.0
with: with:
pathSource: DepotDownloader-windows-x64.zip pathSource: ${{fromJson(steps.download_depotdownloader.outputs.downloaded_files)[0]}}
pathTarget: depotdownloader pathTarget: depotdownloader
- name: Download Game Binaries (Stable) - name: Download Game Binaries (Stable)
@ -116,6 +117,7 @@ runs:
shell: pwsh shell: pwsh
- name: Download opencover.${{inputs.opencover-version}} - name: Download opencover.${{inputs.opencover-version}}
id: download_opencover
uses: robinraju/release-downloader@v1 uses: robinraju/release-downloader@v1
with: with:
repository: OpenCover/opencover repository: OpenCover/opencover
@ -123,5 +125,5 @@ runs:
file: opencover.${{inputs.opencover-version}}.zip file: opencover.${{inputs.opencover-version}}.zip
- name: Extract opencover.${{inputs.opencover-version}} - name: Extract opencover.${{inputs.opencover-version}}
run: Expand-Archive -Path "${{github.workspace}}/opencover.${{inputs.opencover-version}}.zip" -DestinationPath "${{github.workspace}}/opencover" run: Expand-Archive -Path "${{fromJson(steps.download_opencover.outputs.downloaded_files)[0]}}" -DestinationPath "${{github.workspace}}/opencover"
shell: pwsh shell: pwsh

Loading…
Cancel
Save