Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
862401183c | ||
|
|
190bc4cc4f | ||
|
|
f066d8443e | ||
|
|
afd7b18000 | ||
|
|
19eacd1918 | ||
|
|
1e011ae3ec | ||
|
|
bfa0f15ec3 |
@@ -4,7 +4,7 @@ on:
|
||||
push:
|
||||
|
||||
env:
|
||||
IMAGE_TAG: kenayagi/php-fpm-ext:${{ github.ref_name }}
|
||||
IMAGE_TAG: ${{ vars.DOCKERREGISTRY_HOST }}/${{ github.repository }}:${{ github.ref_name }}
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
@@ -17,8 +17,9 @@ jobs:
|
||||
- name: login to the docker hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
registry: ${{ vars.DOCKERREGISTRY_HOST }}
|
||||
username: ${{ vars.DOCKERREGISTRY_USERNAME }}
|
||||
password: ${{ secrets.DOCKERREGISTRY_PASSWORD }}
|
||||
- name: build and push docker image
|
||||
uses: docker/build-push-action@v4
|
||||
env:
|
||||
@@ -32,7 +33,7 @@ jobs:
|
||||
- name: send telegram message
|
||||
uses: https://github.com/appleboy/telegram-action@master
|
||||
with:
|
||||
to: ${{ secrets.TELEGRAM_TO }}
|
||||
to: ${{ vars.TELEGRAM_TO }}
|
||||
token: ${{ secrets.TELEGRAM_TOKEN }}
|
||||
message: |
|
||||
[Docker] ${{ env.IMAGE_TAG }} has just been released. 🎉
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM php:8.2.19-fpm-bookworm
|
||||
FROM php:8.2.32-fpm-trixie
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get -y --no-install-recommends install \
|
||||
|
||||
Reference in New Issue
Block a user