Skip to content

Commit

Permalink
v3.0.10 (#55)
Browse files Browse the repository at this point in the history
Minor updates
* Using latest base image
* Moving PHP build to overlay/tmp

Build updates
* Adding GitHub packages
  • Loading branch information
bfren committed Mar 7, 2022
1 parent de7bb69 commit eeff759
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
id: docker_build
Expand All @@ -54,6 +61,8 @@ jobs:
tags: |
bfren/freescout:dev
bfren/freescout:${{ steps.version.outputs.contents }}-beta
ghcr.io/bfren/freescout:dev
ghcr.io/bfren/freescout:${{ steps.version.outputs.contents }}-beta
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
16 changes: 16 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
id: docker_build
Expand All @@ -84,6 +91,15 @@ jobs:
bfren/freescout:freescout${{ steps.freescout_minor.outputs.contents }}
bfren/freescout:freescout${{ steps.freescout_minor.outputs.contents }}-${{ steps.version.outputs.contents }}
bfren/freescout:freescout${{ steps.freescout_revision.outputs.contents }}
ghcr.io/bfren/freescout:latest
ghcr.io/bfren/freescout:${{ steps.version_major.outputs.contents }}
ghcr.io/bfren/freescout:${{ steps.version_minor.outputs.contents }}
ghcr.io/bfren/freescout:${{ steps.version.outputs.contents }}
ghcr.io/bfren/freescout:freescout${{ steps.freescout_major.outputs.contents }}
ghcr.io/bfren/freescout:freescout${{ steps.freescout_major.outputs.contents }}-${{ steps.version.outputs.contents }}
ghcr.io/bfren/freescout:freescout${{ steps.freescout_minor.outputs.contents }}
ghcr.io/bfren/freescout:freescout${{ steps.freescout_minor.outputs.contents }}-${{ steps.version.outputs.contents }}
ghcr.io/bfren/freescout:freescout${{ steps.freescout_revision.outputs.contents }}
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/nginx-php:php7.4-4.1.1
FROM bfren/nginx-php:php7.4-4.1.2

ARG BF_IMAGE
ARG BF_VERSION
Expand All @@ -21,7 +21,6 @@ ENV \

COPY ./overlay /
COPY ./FREESCOUT_REVISION /tmp/
COPY ./PHP_BUILD /tmp/

RUN bf-install

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.9
3.0.10
File renamed without changes.

0 comments on commit eeff759

Please sign in to comment.