mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-21 03:06:08 +02:00
Added nextcloud 24 and 26 apache
Signed-off-by: Glaucio Campos <69731354+glauciocampos@users.noreply.github.com>
This commit is contained in:
parent
59e576883f
commit
d005c916f1
1 changed files with 29 additions and 8 deletions
35
.github/workflows/docker-build-push.yml
vendored
35
.github/workflows/docker-build-push.yml
vendored
|
@ -1,14 +1,11 @@
|
||||||
name: Docker Build and Push
|
name: Docker Build and Push
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- "main"
|
|
||||||
- "test/*"
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docker:
|
docker_env:
|
||||||
|
name: Prepare docker env
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
|
@ -26,11 +23,35 @@ jobs:
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
build_and_push_nc:
|
||||||
|
name: Build and Push
|
||||||
|
runs-on: backend
|
||||||
|
needs: docker_env
|
||||||
|
steps:
|
||||||
-
|
-
|
||||||
name: Build and push
|
name: Nextcloud 24 Apache
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: ./24/apache
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
push: true
|
||||||
|
tags: glauciocampos/nextcloud-full:24-apache-latest
|
||||||
|
|
||||||
|
-
|
||||||
|
name: Nextcloud 25 Apache
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: ./25/apache
|
context: ./25/apache
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ secrets.DOCKERHUB_USERNAME }}/nextcloud-full:25-apache-latest
|
tags: glauciocampos/nextcloud-full:25-apache-latest
|
||||||
|
|
||||||
|
-
|
||||||
|
name: Nextcloud 26 Apache
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: ./26/apache
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
push: true
|
||||||
|
tags: glauciocampos/nextcloud-full:26-apache-latest
|
||||||
|
|
Loading…
Add table
Reference in a new issue