Skip to content

Commit

Permalink
Merge branch 'source' of https://github.com/Kentico/kentico.github.io
Browse files Browse the repository at this point in the history
…into source
  • Loading branch information
Simply007 committed Apr 13, 2021
2 parents be11209 + 517ecf1 commit 57c1b86
Show file tree
Hide file tree
Showing 6 changed files with 5,763 additions and 4,088 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Users referenced in this file will automatically be requested as reviewers for PRs that modify the given paths.
# See https://help.github.com/articles/about-code-owners/

* @Simply007 @makma @ondrabus
* @Kentico/developer-relations
33 changes: 33 additions & 0 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build & Deploy

on:
push:
branches: [ source ]
pull_request:
branches: [ source ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- name: Deploy 🚀
if: github.ref == 'refs/heads/source'
uses: JamesIves/github-pages-deploy-action@3.6.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: master
FOLDER: public
CLEAN: true # Automatically remove deleted files from the deploy branch
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Kentico GitHub Community site

[![Build Status](https://api.travis-ci.com/Kentico/kentico.github.io.svg?branch=source)](https://travis-ci.com/Kentico/kentico.github.io)
[![Build & Deploy](https://github.com/Kentico/kentico.github.io/actions/workflows/integrate.yml/badge.svg)](https://github.com/Kentico/kentico.github.io/actions/workflows/integrate.yml)
[![Live](https://img.shields.io/badge/live-demo-brightgreen.svg)](https://kentico.github.io)
[![Stack Overflow](https://img.shields.io/badge/Stack%20Overflow-ASK%20NOW-FE7A16.svg?logo=stackoverflow&logoColor=white)](https://stackoverflow.com/tags/kentico-cloud)

Expand Down
Loading

0 comments on commit 57c1b86

Please sign in to comment.