diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0fd2474..2631594 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,6 +25,10 @@ build: script: - npm install - npm run build + artifacts: + expire_in: 1 hour + paths: + - lib pages: stage: deploy @@ -45,6 +49,8 @@ npm_publish: script: - npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" - npm publish + dependencies: + - build clean: when: always diff --git a/package.json b/package.json index 9855161..e9763dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-osc", - "version": "0.2.1", + "version": "0.2.2", "description": "Fully TypeScript-native OSC Client based on osc-min", "main": "./lib/index.js", "types": "./lib/index.d.ts",