Workflow Fix

This commit is contained in:
2026-04-02 19:13:59 -05:00
parent 523e75bb21
commit 519a8b86d9
2 changed files with 9 additions and 3 deletions

View File

@@ -119,10 +119,13 @@ jobs:
git config --local user.name "github-actions[bot]"
git add updates.xml
git commit -m "chore: Update SHA-256 hash for release ${TAG}
git commit -m "$(cat <<EOF
chore: Update SHA-256 hash for release ${TAG}
Auto-generated by auto-update-sha workflow
SHA-256: ${{ steps.sha.outputs.sha256 }}"
Auto-generated by auto-update-sha workflow
SHA-256: ${{ steps.sha.outputs.sha256 }}
EOF
)"
git push origin main

View File

@@ -501,6 +501,7 @@ jobs:
coverage: none
- name: Install API Package
if: hashFiles('composer.json') != ''
run: composer install --no-dev --no-interaction --prefer-dist --optimize-autoloader
env:
COMPOSER_AUTH: '{"github-oauth":{"github.com":"${{ secrets.GH_TOKEN }}"}}'
@@ -1960,6 +1961,7 @@ jobs:
coverage: none
- name: Install API Package
if: hashFiles('composer.json') != ''
run: composer install --no-dev --no-interaction --prefer-dist --optimize-autoloader
env:
COMPOSER_AUTH: '{"github-oauth":{"github.com":"${{ secrets.GH_TOKEN }}"}}'
@@ -2010,6 +2012,7 @@ jobs:
coverage: none
- name: Install API Package
if: hashFiles('composer.json') != ''
run: composer install --no-dev --no-interaction --prefer-dist --optimize-autoloader
env:
COMPOSER_AUTH: '{"github-oauth":{"github.com":"${{ secrets.GH_TOKEN }}"}}'