replace travis with github actions

This commit is contained in:
long2ice
2020-04-21 23:57:02 +08:00
parent f592a4288e
commit 3393659717
3 changed files with 53 additions and 20 deletions

35
.github/workflow/gh-pages.yml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: gh-pages
on:
push:
paths:
- 'front/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Build
env:
PRODUCTION_BASE_URL: /
BASE_URL: /
VUE_APP_API_URL: https://api-fastapi-admin.long2ice.cn:8443
run: npm run build
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: fastapi-admin.long2ice.cn

18
.github/workflow/pypi.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: pypi
on:
push:
paths:
- 'fastapi_admin/__init__.py'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build dists
run: |
python setup.py sdist
- name: Pypi Publish
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}