Add github actions workflows #10

This commit is contained in:
Marius Stanca 2022-01-21 09:52:18 +02:00
parent ff1bd0dadf
commit 1792528297
No known key found for this signature in database
GPG Key ID: 3F18F3CF10AD6E8D
5 changed files with 26 additions and 19 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@ -0,0 +1 @@
* @wmariuss

0
.github/CONTRIBUTING.md vendored Normal file
View File

23
.github/workflows/deploy.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Deploy
on:
push:
branches:
- main
- add/actions
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

View File

@ -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

View File

@ -1,7 +1,8 @@
# Awesome DevOps
[![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.