ci: Mock the artifact creation for the test workflow [skip ci]

This commit is contained in:
2024-12-19 16:19:43 -07:00
parent bc60128679
commit 8102b5933f
+7 -13
View File
@@ -17,15 +17,14 @@ jobs:
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Get release artifacts
uses: actions/download-artifact@v4.1.7
with:
name: artifacts
path: artifacts
- name: Set release assets and version - name: Set release assets and version
shell: pwsh shell: pwsh
run: | run: |
# mock artifact data
mkdir artifacts
'c27e191f4290501287ca16268d9c2029e1f5cd01f7c2ac2be3cdfee80395f719' | Set-Content -Path artifacts/managarr-windows.sha256
'0.4.0' | Set-Content -Path artifacts/release-version
# Read the first column from the SHA256 file # Read the first column from the SHA256 file
$windows_sha = Get-Content ./artifacts/managarr-windows.sha256 | ForEach-Object { $_.Split(' ')[0] } $windows_sha = Get-Content ./artifacts/managarr-windows.sha256 | ForEach-Object { $_.Split(' ')[0] }
Add-Content -Path $env:GITHUB_ENV -Value "WINDOWS_SHA=$windows_sha" Add-Content -Path $env:GITHUB_ENV -Value "WINDOWS_SHA=$windows_sha"
@@ -34,17 +33,12 @@ jobs:
$release_version = Get-Content ./artifacts/release-version $release_version = Get-Content ./artifacts/release-version
Add-Content -Path $env:GITHUB_ENV -Value "RELEASE_VERSION=$release_version" Add-Content -Path $env:GITHUB_ENV -Value "RELEASE_VERSION=$release_version"
- name: Validate release environment variables
run: |
echo "Release SHA windows: ${{ env.WINDOWS_SHA }}"
echo "Release version: ${{ env.RELEASE_VERSION }}"
- name: Package and Publish package to Chocolatey - name: Package and Publish package to Chocolatey
run: | run: |
mkdir ./deployment/chocolatey/tools mkdir ./deployment/chocolatey/tools
# Run packaging script # Run packaging script
python "./deployment/chocolatey/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/chocolatey/managarr.nuspec.template" "./deployment/chocolatey/managarr.nuspec" ${{ env.WINDOWS_SHA }} python "./deployment/chocolatey/packager.py" "0.4.0" "./deployment/chocolatey/managarr.nuspec.template" "./deployment/chocolatey/managarr.nuspec" ${{ env.WINDOWS_SHA }}
python "./deployment/chocolatey/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/chocolatey/chocolateyinstall.ps1.template" "./deployment/chocolatey/tools/chocolateyinstall.ps1" ${{ env.WINDOWS_SHA }} python "./deployment/chocolatey/packager.py" "0.4.0" "./deployment/chocolatey/chocolateyinstall.ps1.template" "./deployment/chocolatey/tools/chocolateyinstall.ps1" ${{ env.WINDOWS_SHA }}
# Publish to Chocolatey # Publish to Chocolatey
cd ./deployment/chocolatey cd ./deployment/chocolatey