Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
zeriyoshi committed Jul 12, 2024
1 parent b59ad5d commit 4e12c0d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/daily.yml → .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Daily build
name: Weekly build

on:
push:
workflow_dispatch:

permissions:
packages: write
Expand All @@ -16,12 +16,12 @@ jobs:
uses: ./.github/workflows/__generate_image_variants.yml
with:
php_versions_json: ${{ needs.determine_php_versions.outputs.values }}
# build_base:
# needs: generate_image_variants
# uses: ./.github/workflows/___build_base.yml
# with:
# image_variants: ${{ needs.generate_image_variants.outputs.values }}
# enable_minor: true
build_base:
needs: generate_image_variants
uses: ./.github/workflows/___build_base.yml
with:
image_variants: ${{ needs.generate_image_variants.outputs.values }}
enable_minor: true
determine_types:
runs-on: ubuntu-latest
steps:
Expand All @@ -43,7 +43,7 @@ jobs:
base: ${{ needs.generate_image_variants.outputs.values }}
join: ${{ needs.determine_types.outputs.values }}
build_variants:
needs: mixin_types
needs: ["build_base", "mixin_types"]
uses: ./.github/workflows/___build_variants.yml
with:
matrix_include: ${{ needs.mixin_types.outputs.values }}
Expand Down
2 changes: 1 addition & 1 deletion distroless_php_add_binary
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

if [ ${#} -eq 0 ] || [ "${1}" == "--help" ]; then
if [ ${#} -eq 0 ] || [ "${1}" = "--help" ]; then
echo "Usage: distroless_php_add_binary <absolute path for executable>..."
exit 1
fi
Expand Down

0 comments on commit 4e12c0d

Please sign in to comment.