Browse Source

fix: archive actual files instead of symbolic links

pull/208/head
Nicolas Giard 7 years ago
committed by GitHub
parent
commit
4152673fd5
1 changed files with 2 additions and 2 deletions
  1. 4
      wercker.yml

4
wercker.yml

@ -21,9 +21,9 @@ deploy-github:
- script: - script:
name: package name: package
code: | code: |
tar -czfv wiki-js.tar.gz * -X .build/.deployexclude
tar -chzfv wiki-js.tar.gz * -X .build/.deployexclude
yarn install --production --ignore-scripts --prefer-offline yarn install --production --ignore-scripts --prefer-offline
tar -czfv node_modules.tar.gz node_modules
tar -chzfv node_modules.tar.gz node_modules
SEMVER_LAST=`npm show wiki.js version` SEMVER_LAST=`npm show wiki.js version`
chmod +x ./.build/semver_next.sh chmod +x ./.build/semver_next.sh
SEMVER_NEXT=`./.build/semver_next.sh -p $SEMVER_LAST` SEMVER_NEXT=`./.build/semver_next.sh -p $SEMVER_LAST`

Loading…
Cancel
Save