From b3d06e0ac11554254ad5f6649b161fe6b1aeebd0 Mon Sep 17 00:00:00 2001 From: Aleksei Khudiakov Date: Mon, 6 Jan 2020 14:21:22 +1000 Subject: [PATCH 1/4] Update build status badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d8df683b..2641ac8b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # laminas-serializer -[![Build Status](https://travis-ci.org/laminas/laminas-serializer.svg?branch=master)](https://travis-ci.org/laminas/laminas-serializer) +[![Build Status](https://travis-ci.com/laminas/laminas-serializer.svg?branch=master)](https://travis-ci.com/laminas/laminas-serializer) [![Coverage Status](https://coveralls.io/repos/github/laminas/laminas-serializer/badge.svg?branch=master)](https://coveralls.io/github/laminas/laminas-serializer?branch=master) laminas-serializer provides an adapter-based interface for generating and From d1f7f1a5108f7668376449c96b72d47a605e8836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bundyra?= Date: Wed, 8 Jan 2020 12:32:18 +0000 Subject: [PATCH 2/4] Update copyright year: 2020 --- COPYRIGHT.md | 2 +- LICENSE.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/COPYRIGHT.md b/COPYRIGHT.md index c4fc4fee..f6870469 100644 --- a/COPYRIGHT.md +++ b/COPYRIGHT.md @@ -1,2 +1,2 @@ -Copyright (c) 2019, Laminas Foundation. +Copyright (c) 2019-2020, Laminas Foundation. All rights reserved. (https://getlaminas.org/) diff --git a/LICENSE.md b/LICENSE.md index 09f53edc..16fe8690 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright (c) 2019, Laminas Foundation +Copyright (c) 2019-2020, Laminas Foundation All rights reserved. Redistribution and use in source and binary forms, with or without From 37a6cea031d8508c0670e8faa76ed4479b2b025e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bundyra?= Date: Wed, 8 Jan 2020 12:32:18 +0000 Subject: [PATCH 3/4] Removes redundant extra.project_url configuration --- mkdocs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index a57c3277..57718006 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -9,4 +9,3 @@ site_description: "Serialize and deserialize PHP structures to a variety of repr repo_url: 'https://github.com/laminas/laminas-serializer' extra: project: Components - project_url: 'https://docs.laminas.dev' From 67c58f1945bb398e71138a28020a2cadee054569 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bundyra?= Date: Wed, 8 Jan 2020 12:32:18 +0000 Subject: [PATCH 4/4] Adds github workflow to build documentation --- .github/workflows/docs-build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/docs-build.yml diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml new file mode 100644 index 00000000..61464824 --- /dev/null +++ b/.github/workflows/docs-build.yml @@ -0,0 +1,16 @@ +name: docs-build + +on: + push: + branches: + - master + repository_dispatch: + +jobs: + build-deploy: + runs-on: ubuntu-latest + steps: + - name: Build Docs + uses: laminas/documentation-theme/github-actions/docs@master + env: + DOCS_DEPLOY_KEY: ${{ secrets.DOCS_DEPLOY_KEY }}