Skip to content

Commit

Permalink
[gha] debug gh again and possibly fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
oxy86 committed Dec 4, 2024
1 parent 810ebd8 commit 2299b0d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ jobs:
echo "📤 Uploading artifact to GitHub release..."
gh release upload continuous "./build/${{ env.LINUX_ARTIFACT }}" --repo "${{ github.repository }}" \
--clobber --content-type application/octet-stream
--clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Check failure on line 325 in .github/workflows/build-ci.yml

View workflow job for this annotation

GitHub Actions / validate-yaml

325:52 [trailing-spaces] trailing spaces

Expand Down Expand Up @@ -515,7 +515,7 @@ jobs:
echo "📤 Uploading artifact to GitHub release..."
gh release upload continuous "./build/${{ env.MAC_ARTIFACT }}" --repo "${{ github.repository }}" \
--clobber --content-type application/octet-stream
--clobber

Check failure on line 518 in .github/workflows/build-ci.yml

View workflow job for this annotation

GitHub Actions / validate-yaml

518:22 [trailing-spaces] trailing spaces
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -588,8 +588,7 @@ jobs:

echo "Updating RELEASEFOLDER in innosetup.iss with ${{env.CMAKE_CONFIG}}..."
$config = "${{env.CMAKE_CONFIG}}"
$replacement = "#define RELEASEFOLDER `"$config\\`""
(Get-Content innosetup.iss) -replace '#define RELEASEFOLDER "release\\\\"', $replacement | Set-Content innosetup.iss
(Get-Content innosetup.iss) -replace '#define RELEASEFOLDER "release\\\\"', "#define RELEASEFOLDER \"$config\\\"" | Set-Content innosetup.iss

Check warning on line 591 in .github/workflows/build-ci.yml

View workflow job for this annotation

GitHub Actions / validate-yaml

591:151 [line-length] line too long (151 > 150 characters)
echo "Updated innosetup.iss:"
type innosetup.iss

Check failure on line 594 in .github/workflows/build-ci.yml

View workflow job for this annotation

GitHub Actions / validate-yaml

594:1 [trailing-spaces] trailing spaces
Expand Down

0 comments on commit 2299b0d

Please sign in to comment.