# version format version: '{build}' deploy: on # branches to build branches: # whitelist only: - master # Do not build on tags (GitHub, Bitbucket, GitLab, Gitea) skip_tags: true # Maximum number of concurrent jobs for the project max_jobs: 1 clone_depth: 1 # Build worker image (VM template) build_cloud: Docker environment: APPVEYOR_SSH_KEY: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBRMxhawMlUlQ8l4pOaeHsZl8XDO54WQngkYM1U/XB4m samsyn\jonatan@JonatanAMD docker_image: node:16-alpine npm_config_cache: /appveyor/projects/cache test_script: - sh: | chmod -R 777 /appveyor/projects npm install npm run test if [ $? -ne 0 ]; then exit 1 fi # on successful build on_success: - sh: | apk add curl jq if [ $? -eq 0 ]; then echo "Finished installling curl and jq" else exit 1 fi CURR_VER=$(cat package.json | jq -r .version) echo "Checking https://git.nfp.is/api/v1/repos/$APPVEYOR_REPO_NAME/releases for version v${CURR_VER}" curl -s -X GET -H "Authorization: token $deploytoken" https://git.nfp.is/api/v1/repos/$APPVEYOR_REPO_NAME/releases | grep -o "\"name\"\:\"v${CURR_VER}\"" > /dev/null if [ $? -eq 0 ] ; then echo "Release already exists, nothing to do."; else echo "Creating release on gitea" RELEASE_RESULT=$(curl \ -X POST \ -H "Authorization: token $deploytoken" \ -H "Content-Type: application/json" \ https://git.nfp.is/api/v1/repos/$APPVEYOR_REPO_NAME/releases \ -d "{\"tag_name\":\"v${CURR_VER}\",\"name\":\"v${CURR_VER}\",\"body\":\"Automatic release from Appveyor from ${APPVEYOR_REPO_COMMIT} :\n\n${APPVEYOR_REPO_COMMIT_MESSAGE}\"}") RELEASE_ID=$(echo $RELEASE_RESULT | jq -r .id) echo '//registry.npmjs.org/:_authToken=${npmtoken}' > ~/.npmrc echo "Publishing new version to npm" npm publish fi # - sh: | # YELLOW='\033[0;33m' # NC='\033[0m' # LOCK_FILE="${HOME}/build.lock" # export APPVEYOR_SSH_BLOCK=true # touch "${LOCK_FILE}" # echo -e "Build paused. To resume it, open a bash session to run '${YELLOW}rm \"${LOCK_FILE}\"${NC}' command." # while [ -f "${LOCK_FILE}" ]; do # sleep 1 # done # on build failure on_failure: - sh: echo on_failure