We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f3e2d commit 154353aCopy full SHA for 154353a
.github/workflows/build.yml
@@ -71,6 +71,16 @@ jobs:
71
echo -e "PHP Version: ${{ env.PHP_VERSION }}"
72
echo -e "PHP Release: ${{ env.PHP_MINOR_VERSION }}"
73
74
+ # download previously built artifacts.
75
+ - uses: actions/download-artifact@v2
76
+ with:
77
+ name: alpine-v${{ env.ALPINE_VERSION }}-php-${{ env.PHP_VERSION }}
78
+ path: repo/v${{ env.ALPINE_VERSION }}/php-${{ env.PHP_VERSION }}
79
+
80
+ # debug files.
81
+ - name: Display structure of downloaded files
82
+ run: ls -lhart repo/v${{ env.ALPINE_VERSION }}/php-${{ env.PHP_VERSION }}
83
84
# build packages.
85
- name: build
86
run: |
0 commit comments