Skip to content

Commit

Permalink
Fix issue 88 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
colisee authored May 19, 2024
1 parent f31d1a4 commit d011ffa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_on_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
inputs:
appGitRefs:
required: true
description: 'Application git reference'
default: 'refs/heads/develop'
description: 'Librebooking/app git reference'
default: 'develop'
imgBuild:
required: true
description: 'Image build'
default: '2.3.2'
default: '2.4.0'
regName:
required: true
description: 'Registry name'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_on_schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build-develop:
uses: ./.github/workflows/build_and_publish.yml
with:
appGitRefs: refs/heads/develop
appGitRefs: develop
imgBuild: ${{ vars.IMAGE_BUILD }}
regName: ${{ vars.REGISTRY_URL }}
regLogin: ${{ vars.REGISTRY_LOGIN }}
Expand All @@ -18,7 +18,7 @@ jobs:
build-release:
uses: ./.github/workflows/build_and_publish.yml
with:
appGitRefs: refs/tags/${{ vars.APP_LAST_RELEASE }}
appGitRefs: ${{ vars.APP_LAST_RELEASE }}
imgBuild: ${{ vars.IMAGE_BUILD }}
regName: ${{ vars.REGISTRY_URL }}
regLogin: ${{ vars.REGISTRY_LOGIN }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN set -ex; \
curl \
--fail \
--silent \
--location https://github.com/LibreBooking/app/archive/${APP_GH_REF}.tar.gz \
--location https://api.github.com/repos/librebooking/app/tarball/${APP_GH_REF} \
| tar --extract --gzip --directory=/var/www/html --strip-components=1; \
if [ -f /var/www/html/composer.json ]; then \
composer install --ignore-platform-req=ext-gd; \
Expand Down

0 comments on commit d011ffa

Please sign in to comment.