mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +08:00
replace travis with github actions
This commit is contained in:
35
.github/workflow/gh-pages.yml
vendored
Normal file
35
.github/workflow/gh-pages.yml
vendored
Normal 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
18
.github/workflow/pypi.yml
vendored
Normal 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 }}
|
||||
Reference in New Issue
Block a user