mirror of
https://github.com/two-torial/two-torial.git
synced 2026-08-28 17:37:00 -05:00
Remove travis workflow and add ci
This commit is contained in:
22
.github/workflows/build.yml
vendored
Normal file
22
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Build
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Prep Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.10'
|
||||
- name: Install pip deps
|
||||
run: |
|
||||
python -m pip install --user -r requirements.txt
|
||||
- name: Build and deploy site
|
||||
run: mkdocs gh-deploy --force
|
||||
17
.travis.yml
17
.travis.yml
@@ -1,17 +0,0 @@
|
||||
language: python
|
||||
|
||||
python: 3.6.7
|
||||
|
||||
install:
|
||||
- pip install -r requirements.txt
|
||||
|
||||
script:
|
||||
- mkdocs build --verbose --clean --strict
|
||||
|
||||
deploy:
|
||||
provider: pages
|
||||
skip_cleanup: true
|
||||
github_token: $github_token
|
||||
local_dir: site
|
||||
on:
|
||||
branch: master
|
||||
Reference in New Issue
Block a user