You've already forked Awesome-DevOps-copy
Add github actions workflows #10
This commit is contained in:
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
23
.github/workflows/deploy.yml
vendored
Normal file
23
.github/workflows/deploy.yml
vendored
Normal 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
|
||||
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
|
||||
|
||||
[](https://awesome.re)
|
||||
[](https://travis-ci.com/wmariuss/awesome-devops)
|
||||
[](https://github.com/wmariuss/awesome-devops/actions/workflows/deploy.yml)
|
||||
[](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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user