unitsml 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +66 -11
- data/lib/unitsml/version.rb +1 -1
- data/unitsdb/dimensions.yaml +859 -0
- data/unitsdb/docs/README.adoc +12 -0
- data/unitsdb/docs/navigation.adoc +7 -0
- data/unitsdb/prefixes.yaml +294 -0
- data/unitsdb/quantities.yaml +2467 -0
- data/unitsdb/unit_systems.yaml +16 -0
- data/unitsdb/units.yaml +10502 -0
- metadata +8 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23178be1c7f1180dd62237f883ace85d945b12c5e9d8995d61d5c37458e40ff4
|
4
|
+
data.tar.gz: d9c9dd7b64cba5f451f5e3c35996348566442002ce11023cc83b5b8d25e45c5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 877e2033da979d98cf66e18b1bef5694552ee97ebaab6727c2269dfe103f944d0b79f7fe4e9d96fed3ad46a7f4a7de9e06d67eb94a6f2fcea2193ffac09edd00
|
7
|
+
data.tar.gz: 4997aac85d434ec7411598807534b78041ba2f7a0671ac125937c05d81070254f9cd621b76425e3fe1ae99aa800b0ce1dffc8e3d374153bdb9e23cf91dc8c47d
|
@@ -5,17 +5,72 @@ on:
|
|
5
5
|
inputs:
|
6
6
|
next_version:
|
7
7
|
description: |
|
8
|
-
Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
|
8
|
+
Next release version. Possible values: x.y.z, major, minor, patch (or pre|rc|etc).
|
9
|
+
Also, you can pass 'skip' to skip 'git tag' and do 'gem push' for the current version
|
9
10
|
required: true
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
type: string
|
12
|
+
secrets:
|
13
|
+
pat_token:
|
14
|
+
required: false
|
14
15
|
jobs:
|
15
16
|
release:
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
runs-on: ubuntu-latest
|
18
|
+
env:
|
19
|
+
HAVE_PAT_TOKEN: ${{ secrets.pat_token != '' }}
|
20
|
+
steps:
|
21
|
+
- uses: actions/checkout@v3
|
22
|
+
with:
|
23
|
+
submodules: true
|
24
|
+
|
25
|
+
- run: git fetch --tags origin
|
26
|
+
|
27
|
+
- if: ${{ env.HAVE_PAT_TOKEN == 'true' }}
|
28
|
+
uses: metanorma/ci/gh-rubygems-setup-action@main
|
29
|
+
with:
|
30
|
+
token: ${{ secrets.pat_token }}
|
31
|
+
|
32
|
+
# workaround for https://github.com/actions/runner-images/issues/37
|
33
|
+
- if: matrix.os == 'ubuntu-latest'
|
34
|
+
run: |
|
35
|
+
sudo apt-get update
|
36
|
+
sudo apt-get install libcurl4-openssl-dev
|
37
|
+
|
38
|
+
- uses: ruby/setup-ruby@v1
|
39
|
+
with:
|
40
|
+
ruby-version: '3.1'
|
41
|
+
bundler-cache: true
|
42
|
+
|
43
|
+
- run: |
|
44
|
+
git config user.name github-actions
|
45
|
+
git config user.email github-actions@github.com
|
46
|
+
|
47
|
+
- run: gem install gem-release
|
48
|
+
|
49
|
+
- run: gem bump --version ${{ inputs.next_version }} --tag --push
|
50
|
+
|
51
|
+
- name: publish to rubygems.org
|
52
|
+
env:
|
53
|
+
RUBYGEMS_API_KEY: ${{ secrets.UNITSML_CI_RUBYGEMS_API_KEY }}
|
54
|
+
run: |
|
55
|
+
mkdir -p ~/.gem
|
56
|
+
envsubst << 'EOF' > ~/.gem/credentials
|
57
|
+
---
|
58
|
+
:rubygems_api_key: ${RUBYGEMS_API_KEY}
|
59
|
+
EOF
|
60
|
+
chmod 0600 ~/.gem/credentials
|
61
|
+
bundle exec rake release
|
62
|
+
|
63
|
+
# This workflow usually called via repository_dispatch or direct workflow_dispatch
|
64
|
+
# in both cases `github.ref` doesn't reflect real version so we calculate it from gemspecfile
|
65
|
+
- name: get current gem ref
|
66
|
+
id: gem-tag-ref
|
67
|
+
run: |
|
68
|
+
GEM_VERSION=$(ruby -e "puts Gem::Specification.load(Dir.glob('*.gemspec').first).version.to_s")
|
69
|
+
echo "value=refs/tags/v${GEM_VERSION}" >> $GITHUB_OUTPUT
|
70
|
+
|
71
|
+
- uses: peter-evans/repository-dispatch@v2
|
72
|
+
with:
|
73
|
+
token: ${{ secrets.pat_token || github.token }}
|
74
|
+
repository: ${{ github.repository }}
|
75
|
+
event-type: release-passed
|
76
|
+
client-payload: '{"ref": "${{ steps.gem-tag-ref.outputs.value }}", "sha": "${{ github.sha }}", "type": "release-passed"}'
|
data/lib/unitsml/version.rb
CHANGED