deploy-test
This commit is contained in:
50
.github/workflows/deploy-cdn.yml
vendored
50
.github/workflows/deploy-cdn.yml
vendored
@@ -1,50 +0,0 @@
|
|||||||
name: Deploy cdn
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
env:
|
|
||||||
SITE: https://cdn.d2.pub/
|
|
||||||
QINIU_BUCKET: d2-cdn
|
|
||||||
DIST_FOLDER: /dist
|
|
||||||
PATH_SUFFIX: /preview
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- uses: actions/setup-node@v1
|
|
||||||
with:
|
|
||||||
node-version: '10.x'
|
|
||||||
- name: Download qshell
|
|
||||||
run: |
|
|
||||||
wget http://devtools.qiniu.com/qshell-linux-x86-v2.4.0.zip
|
|
||||||
unzip qshell-linux-x86-v2.4.0.zip
|
|
||||||
mv qshell-linux-x86-v2.4.0 qshell
|
|
||||||
- name: Install packages
|
|
||||||
run: npm i
|
|
||||||
- name: Build
|
|
||||||
run: npm run build:preview
|
|
||||||
- name: CDN login
|
|
||||||
run: ./qshell account ${{ secrets.AK }} ${{ secrets.SK }} GITHUB_ACTION
|
|
||||||
- name: CDN upload
|
|
||||||
run: |
|
|
||||||
REPO=${GITHUB_REPOSITORY//*\//}
|
|
||||||
echo $SITE > cdnrefresh.txt
|
|
||||||
./qshell qupload2 \
|
|
||||||
--src-dir=$GITHUB_WORKSPACE$DIST_FOLDER \
|
|
||||||
--bucket=$QINIU_BUCKET \
|
|
||||||
--key-prefix=$REPO$PATH_SUFFIX/ \
|
|
||||||
--overwrite=true \
|
|
||||||
--check-exists=true \
|
|
||||||
--check-hash=true \
|
|
||||||
--check-size=true \
|
|
||||||
--rescan-local=true \
|
|
||||||
--thread-count=32
|
|
||||||
- name: CDN refresh
|
|
||||||
run: ./qshell cdnrefresh --dirs -i ./cdnrefresh.txt
|
|
||||||
30
.github/workflows/deploy-d2.yml
vendored
30
.github/workflows/deploy-d2.yml
vendored
@@ -1,30 +0,0 @@
|
|||||||
name: Deploy https://d2.pub
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- uses: actions/setup-node@v1
|
|
||||||
with:
|
|
||||||
node-version: '10.x'
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
npm install
|
|
||||||
npm run build:preview
|
|
||||||
- name: Deploy
|
|
||||||
uses: SamKirkland/FTP-Deploy-Action@2.0.0
|
|
||||||
env:
|
|
||||||
FTP_SERVER: ${{ secrets.FTP_SERVER }}
|
|
||||||
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
|
|
||||||
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
|
|
||||||
METHOD: sftp
|
|
||||||
PORT: ${{ secrets.FTP_PORT }}
|
|
||||||
LOCAL_DIR: dist
|
|
||||||
REMOTE_DIR: /www/d2-admin/preview
|
|
||||||
ARGS: --delete --verbose --parallel=100
|
|
||||||
21
.github/workflows/deploy-github.yml
vendored
21
.github/workflows/deploy-github.yml
vendored
@@ -1,21 +0,0 @@
|
|||||||
name: Deploy Github
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Build and Deploy
|
|
||||||
uses: JamesIves/github-pages-deploy-action@master
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
|
||||||
BRANCH: gh-pages
|
|
||||||
FOLDER: dist
|
|
||||||
BUILD_SCRIPT: npm install && npm run build:github
|
|
||||||
CLEAN: true
|
|
||||||
2
.github/workflows/deploy-test.yml
vendored
2
.github/workflows/deploy-test.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Deploy https://d2.pub
|
name: Deploy Test
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|||||||
17
.github/workflows/feedback.yml
vendored
17
.github/workflows/feedback.yml
vendored
@@ -1,17 +0,0 @@
|
|||||||
name: Feedback
|
|
||||||
on: [fork, watch, issues]
|
|
||||||
jobs:
|
|
||||||
feedback:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: feedback
|
|
||||||
id: feedback
|
|
||||||
uses: d2-projects/repo-email-feedback@v1.3
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.FEEDBACK_USERNAME }}
|
|
||||||
sign: ${{ secrets.FEEDBACK_SIGN }}
|
|
||||||
wxpusher: ${{ secrets.FEEDBACK_WXPUSHER_UID }}
|
|
||||||
template: ${{ github.repository }}
|
|
||||||
repo: ${{ github.repository }}
|
|
||||||
actor: ${{ github.actor }}
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
17
.github/workflows/star.yml
vendored
17
.github/workflows/star.yml
vendored
@@ -1,17 +0,0 @@
|
|||||||
name: Star notice
|
|
||||||
|
|
||||||
on:
|
|
||||||
watch:
|
|
||||||
types: [started]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
bark:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: send bark message
|
|
||||||
run: |
|
|
||||||
repo=${GITHUB_REPOSITORY//\//:}
|
|
||||||
actor=$GITHUB_ACTOR
|
|
||||||
curl https://api.day.app/EweNWLE36rvVR8EFfWGq7k/$actor%20star%20了你的仓库/$repo
|
|
||||||
Reference in New Issue
Block a user