0
0
Fork 0
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:
Glaucio Campos 2023-05-14 20:35:15 -03:00 committed by GitHub
parent 59e576883f
commit d005c916f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 }}
-
name: Build and push build_and_push_nc:
name: Build and Push
runs-on: backend
needs: docker_env
steps:
-
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