@uxf/scripts
v11.90.0
Published
[](https://www.npmjs.com/package/@uxf/scripts) [](https://www.npmjs.com/package/@uxf/scripts) [ [number]
-d, --dry-run Skip publishing and sending slack notification [boolean]
-h, --help Show help [boolean]
Options:
--version Show version number [boolean]How to use in gitlab pipeline .gitlab-ci.yml
set environment variable GITLAB_TOKEN in GitLab CI configuration and create .gitlab-ci.yml
# .gitlab-ci.yml
stages:
- release
release:
image: node:12-buster-slim
stage: release
before_script:
- yarn global add @uxf/release
script:
# ... deploy project ...
- uxf-releaseuxf-push-notifier
stages:
- notify
notify-push:
image: node:20
stage: notify
except: [schedules]
only:
- develop # default branch
script:
- yarn global add @uxf/scripts # uxf scripts are installed in uxf docker images by default
- uxf-push-notifier --google-chat-webhook-url=$GOOGLE_CHAT_WEBHOOKuxf-lunch
UXF lunch
Usage:
uxf-lunch [options]
Environment variables:
SLACK_TOKEN - required
Options
--slack-channel Slack channel [string]
-h, --help Show help [boolean]
Options:
--version Show version number