Merge pull request #12 from wmariuss/add/actions
Add Github Actions workflows
This commit is contained in:
commit
6e1528ce14
1
.github/CODEOWNERS
vendored
Normal file
1
.github/CODEOWNERS
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
* @wmariuss
|
0
.github/CONTRIBUTING.md
vendored
Normal file
0
.github/CONTRIBUTING.md
vendored
Normal file
22
.github/workflows/deploy.yml
vendored
Normal file
22
.github/workflows/deploy.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: Deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.7
|
||||||
|
|
||||||
|
- name: Build and deploy
|
||||||
|
run: |
|
||||||
|
cp README.md docs/index.md
|
||||||
|
pip install -r requirements.txt
|
||||||
|
mkdocs build
|
||||||
|
mkdocs gh-deploy --force
|
18
.travis.yml
18
.travis.yml
@ -1,18 +0,0 @@
|
|||||||
anguage: python
|
|
||||||
|
|
||||||
python:
|
|
||||||
- "3.7"
|
|
||||||
|
|
||||||
script:
|
|
||||||
- cp README.md docs/index.md
|
|
||||||
- mkdocs build
|
|
||||||
# - invoke build
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
provider: pages
|
|
||||||
local-dir: site
|
|
||||||
skip-cleanup: true
|
|
||||||
keep-history: true
|
|
||||||
github-token: $GITHUB_TOKEN
|
|
||||||
on:
|
|
||||||
branch: master
|
|
@ -1,7 +1,8 @@
|
|||||||
# Awesome DevOps
|
# Awesome DevOps
|
||||||
|
|
||||||
[![Awesome](https://awesome.re/badge.svg)](https://awesome.re)
|
[![Awesome](https://awesome.re/badge.svg)](https://awesome.re)
|
||||||
[![Build Status](https://travis-ci.com/wmariuss/awesome-devops.svg?branch=master)](https://travis-ci.com/wmariuss/awesome-devops)
|
[![Deploy](https://github.com/wmariuss/awesome-devops/actions/workflows/deploy.yml/badge.svg)](https://github.com/wmariuss/awesome-devops/actions/workflows/deploy.yml)
|
||||||
|
[![pages-build-deployment](https://github.com/wmariuss/awesome-devops/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/wmariuss/awesome-devops/actions/workflows/pages/pages-build-deployment)
|
||||||
|
|
||||||
A curated list of awesome DevOps tools, technologies, platforms and resources. Things to help/grow you in *DevOps* or *SRE* area.
|
A curated list of awesome DevOps tools, technologies, platforms and resources. Things to help/grow you in *DevOps* or *SRE* area.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user