Skip to content

Update nextcloud Docker tag to v26.0.8 #1126

Update nextcloud Docker tag to v26.0.8

Update nextcloud Docker tag to v26.0.8 #1126

Workflow file for this run

name: Test build
on: pull_request
jobs:
lint_dockerfile:
runs-on: ubuntu-latest
container: hadolint/hadolint:latest-debian
steps:
- name: Checkout
uses: actions/checkout@v2
- name: hadolint
run: |
hadolint --version
hadolint */Dockerfile
nextcloud_24:
runs-on: ubuntu-latest
needs:
- lint_dockerfile
env:
VERSION: "24"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test build
id: docker_build
uses: docker/build-push-action@v2
with:
file: "${{ env.VERSION }}/Dockerfile"
nextcloud_25:
runs-on: ubuntu-latest
needs:
- lint_dockerfile
env:
VERSION: "25"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test build
id: docker_build
uses: docker/build-push-action@v2
with:
file: "${{ env.VERSION }}/Dockerfile"
nextcloud_26:
runs-on: ubuntu-latest
needs:
- lint_dockerfile
env:
VERSION: "26"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test build
id: docker_build
uses: docker/build-push-action@v2
with:
file: "${{ env.VERSION }}/Dockerfile"