This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: fix

+15 -5
+15 -5
.gitlab-ci.yml
··· 25 25 stage: test 26 26 rules: 27 27 - when: always 28 - script: 29 - - apk add git 28 + before_script: 29 + - apk add git npm 30 30 - cp -r typescript typescript_original 31 31 - just build 32 32 - just gen_typescript 33 + script: 33 34 - | 34 35 for file in typescript/*.ts; do 35 36 if ! diff -q $file typescript_original/$(basename $file); then ··· 39 40 fi 40 41 done 41 42 43 + build-typescript: 44 + stage: build 45 + image: node:22-alpine 46 + rules: 47 + - if: $CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+/ 48 + before_script: 49 + - apk add npm git 50 + script: 51 + - just gen_typescript 52 + - npm version minor 53 + 54 + 42 55 build: 43 56 extends: .buildkit 44 57 stage: build ··· 46 59 - if: $CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+/ 47 60 variables: 48 61 DEPLOY: "true" 49 - - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH 50 - variables: 51 - DEPLOY: "false" 52 62 script: 53 63 - | 54 64 if [ "$DEPLOY" == "true" ]; then