Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/build-apk-forgejo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
description: "Optional: override package iteration (integer). Leave empty for auto"
required: false
default: ""
bump:
description: "Bump each package iteration to (latest published on the repo) + 1"
type: boolean
required: false
default: false
php_versions:
description: "Optional: PHP versions (comma-separated, e.g., 8.2,8.5). Leave empty for all"
required: false
Expand Down Expand Up @@ -222,6 +227,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ITERATION: ${{ inputs.iteration || '' }}
BUMP: ${{ inputs.bump || false }}
PACKAGES: ${{ inputs.packages || '' }}
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

Expand Down Expand Up @@ -294,7 +300,11 @@ jobs:
if [[ -n "${ITERATION}" ]]; then
ITERATION_FLAG="--iteration=${ITERATION}"
fi
php bin/spp all --target="native-native-musl -dynamic" --phpv=${{ matrix.php-version }} --prefix="-zts" --type=apk $ITERATION_FLAG $PACKAGES_FLAG
BUMP_FLAG=""
if [[ "${BUMP}" == "true" ]]; then
BUMP_FLAG="--bump"
fi
php bin/spp all --target="native-native-musl -dynamic" --phpv=${{ matrix.php-version }} --prefix="-zts" --type=apk $ITERATION_FLAG $BUMP_FLAG $PACKAGES_FLAG

- name: Upload logs on failure
if: ${{ failure() }}
Expand Down
326 changes: 13 additions & 313 deletions .github/workflows/build-deb-forgejo.yml

Large diffs are not rendered by default.

309 changes: 0 additions & 309 deletions .github/workflows/build-gcc-deb-packages.yml

This file was deleted.

Loading
Loading