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

4
.gitignore vendored
View File

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

0
bin/.gitkeep Normal file
View File