From 5baf6f68a47fd1a4383ef0481dbb1b9a549c7104 Mon Sep 17 00:00:00 2001 From: FairyEver <1711467488@qq.com> Date: Sat, 14 Dec 2019 23:42:00 +0800 Subject: [PATCH] deploy-test --- .github/workflows/deploy-cdn.yml | 50 ----------------------------- .github/workflows/deploy-d2.yml | 30 ----------------- .github/workflows/deploy-github.yml | 21 ------------ .github/workflows/deploy-test.yml | 2 +- .github/workflows/feedback.yml | 17 ---------- .github/workflows/star.yml | 17 ---------- 6 files changed, 1 insertion(+), 136 deletions(-) delete mode 100644 .github/workflows/deploy-cdn.yml delete mode 100644 .github/workflows/deploy-d2.yml delete mode 100644 .github/workflows/deploy-github.yml delete mode 100644 .github/workflows/feedback.yml delete mode 100644 .github/workflows/star.yml diff --git a/.github/workflows/deploy-cdn.yml b/.github/workflows/deploy-cdn.yml deleted file mode 100644 index 4e5a4ff5..00000000 --- a/.github/workflows/deploy-cdn.yml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/.github/workflows/deploy-d2.yml b/.github/workflows/deploy-d2.yml deleted file mode 100644 index 5a2c197c..00000000 --- a/.github/workflows/deploy-d2.yml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/.github/workflows/deploy-github.yml b/.github/workflows/deploy-github.yml deleted file mode 100644 index 5c93e9c8..00000000 --- a/.github/workflows/deploy-github.yml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index a5ebec76..98f28301 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -1,4 +1,4 @@ -name: Deploy https://d2.pub +name: Deploy Test on: push: diff --git a/.github/workflows/feedback.yml b/.github/workflows/feedback.yml deleted file mode 100644 index 3048c48b..00000000 --- a/.github/workflows/feedback.yml +++ /dev/null @@ -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 }} \ No newline at end of file diff --git a/.github/workflows/star.yml b/.github/workflows/star.yml deleted file mode 100644 index 66cce45f..00000000 --- a/.github/workflows/star.yml +++ /dev/null @@ -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 \ No newline at end of file