forked from objectionary/eoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rultor.yml
More file actions
30 lines (30 loc) · 861 Bytes
/
.rultor.yml
File metadata and controls
30 lines (30 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# SPDX-FileCopyrightText: Copyright (c) 2022-2026 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
docker:
image: yegor256/python
ec2:
type: t2.2xlarge
assets:
npmrc: yegor256/objectionary-secrets#npmrc
install: |
sudo /usr/bin/install-node.sh
pip install git+https://chromium.googlesource.com/external/gyp
npm install --no-color
npm install --no-color mocha
pdd -f /dev/null -v
release:
pre: false
script: |
[[ "${tag}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || exit -1
sed -i "s/0\.0\.0/${tag}/" package.json
sed -i "s/0\.0\.0/${tag}/" src/version.js
sed -i "s/0000-00-00/$(date +%Y-%m-%d)/" src/version.js
npx grunt --no-color
git commit -am "set version to ${tag}"
chmod 600 ../npmrc
npm publish --no-color --userconfig=../npmrc
merge:
script: |-
npx grunt --no-color