-
Notifications
You must be signed in to change notification settings - Fork 91
/
.rultor.yml
96 lines (87 loc) · 3.04 KB
/
.rultor.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# The MIT License (MIT)
#
# Copyright (c) 2015-2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
---
docker:
image: yegor256/rultor-image:1.23.1
assets:
npmrc: yegor256/home#assets/npmrc
install: |
pdd --source=$(pwd) --verbose --file=/dev/null
npm install --no-color
architect:
- yegor256
- filfreire
merge:
script: |
npm run rultor --no-color
commanders:
- yegor256
- filfreire
release:
pre: false
commanders:
- yegor256
script: |-
# Change proper version for all necessary filers
npm version "${tag}"
sed -i "s|VERSION|${tag}|g" bower.json
sed -i "s|VERSION|${tag}|g" index.html
# Perform build
git rm -rf dist/ --ignore-unmatch
npm run rultor --no-color
# Current branch is __rultor
# Add built files to git and commit
git add -f dist/tacit-css-${tag}.min.css
git add -f dist/tacit-css-${tag}.min.css.map
git add -f dist/tacit-css-${tag}.css
git add -f dist/tacit-css.min.css
git add -f dist/tacit-css.css
git commit -am "Added CSS files for ${tag}"
# We'll gonna need these files later...
mv dist/tacit-css-${tag}.min.css /tmp
mv index.html /tmp
mv tacit_logo.png /tmp
mv tacit_logo.svg /tmp
# Checkout to gh-pages and reset any modifications
branch=$(git rev-parse --abbrev-ref HEAD)
git checkout gh-pages
git reset --hard
sudo /bin/bash -c "cd '$(pwd)'; git clean -fd"
# Add the current, minified css file to the gh-pages branch
mv /tmp/tacit-css-${tag}.min.css .
cp tacit-css-${tag}.min.css tacit-css.min.css
cp tacit-css-${tag}.min.css tacit.min.css
mv /tmp/index.html .
mv /tmp/tacit_logo.png .
mv /tmp/tacit_logo.svg .
git add tacit-css-${tag}.min.css
git add tacit-css.min.css
git add tacit.min.css
git add index.html
git add tacit_logo.png
git add tacit_logo.svg
# Commit and change the branch to master
git commit --allow-empty -am "${tag}"
git checkout "${branch}"
# Deploy to NPMJS
chmod 600 ../npmrc
npm publish --no-color --userconfig=../npmrc