Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

Commit

Permalink
fix .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Violin9906 committed Jun 28, 2020
1 parent 6652b96 commit 66a54b4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
- "zip -r ../$PKG_VERSION-dev.zip ./"
- cd ..
- ls
- git tag v$PKG_VERSION-$TRAVIS_COMMIT
- git tag v$PKG_VERSION-$TRAVIS_BUILD_NUMBER
- "echo VERSION: $PKG_VERSION"
deploy:
- provider: releases
token: $GITHUB_TOKEN
file: $PKG_VERSION-dev.zip
prerelease: true
name: v$PKG_VERSION Develop version $TRAVIS_COMMIT
name: v$PKG_VERSION Develop version $TRAVIS_BUILD_NUMBER
release_notes: "这是一个开发版本,可能存在大量严重bug。请将您使用过程中发现的问题在issue中报告。"
skip_cleanup: true
on:
Expand All @@ -44,14 +44,14 @@ jobs:
- cd dist
- "zip -r ../$PKG_VERSION-pre.zip ./"
- cd ..
- git tag v$PKG_VERSION-$TRAVIS_COMMIT
- git tag v$PKG_VERSION-$TRAVIS_BUILD_NUMBER
- "echo VERSION: $PKG_VERSION"
deploy:
- provider: releases
token: $GITHUB_TOKEN
file: $PKG_VERSION-pre.zip
prerelease: true
name: v$PKG_VERSION Pre-release version
name: v$PKG_VERSION Pre-release version $TRAVIS_BUILD_NUMBER
release_notes: "这是一个预发布版本,请将您使用过程中发现的问题在issue中报告。"
skip_cleanup: true
on:
Expand All @@ -67,7 +67,7 @@ jobs:
- cd dist
- "zip -r ../$PKG_VERSION.zip ./"
- cd ..
- git tag v$PKG_VERSION-$TRAVIS_COMMIT
- git tag v$PKG_VERSION-$TRAVIS_BUILD_NUMBER
- "echo VERSION: $PKG_VERSION"
deploy:
- provider: releases
Expand Down

0 comments on commit 66a54b4

Please sign in to comment.