diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index ae25b9f..d1f4e9e 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -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 diff --git a/.gitignore b/.gitignore index 40ddaa1..4ae6fcb 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,10 @@ web/.htaccess !.github/* !.profile.d/999-app.sh +# Bin +bin/* +!bin/.gitkeep + # Composer /vendor diff --git a/bin/.gitkeep b/bin/.gitkeep new file mode 100644 index 0000000..e69de29