~ fix build

This commit is contained in:
felegy
2022-06-28 15:44:30 +02:00
parent cd41dc8e41
commit b2f322670e
3 changed files with 7 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ jobs:
- name: Setup Pack
run: |
echo "Installing pack ${PACK_VERSION}"
mkdir -p "${HOME}/bin"
mkdir -p "${PWD}/bin"
curl \
--show-error \
--silent \
@@ -54,7 +54,7 @@ jobs:
--connect-timeout 5 \
--max-time 60 \
"https://github.com/buildpacks/pack/releases/download/v${PACK_VERSION}/pack-v${PACK_VERSION}-linux.tgz" \
| tar -C "${HOME}/bin" -xz pack
| tar -C "${PWD}/bin" -xz pack
- name: Build Image with pack
run: |
~/bin/pack --version
bin/pack --version

4
.gitignore vendored
View File

@@ -28,6 +28,10 @@ web/.htaccess
!.github/*
!.profile.d/999-app.sh
# Bin
bin/*
!bin/.gitkeep
# Composer
/vendor

0
bin/.gitkeep Normal file
View File