mnconvert 1.14.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mnconvert might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.github/workflows/release-manual.yml +33 -0
- data/.github/workflows/release-tag.yml +2 -2
- data/.github/workflows/release.yml +0 -1
- data/bin/mnconvert.jar +0 -0
- data/lib/mnconvert/version.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a283a92498bf3b58ab9943115c3c989537a64f820ee60b9fe61af28417a095a
|
4
|
+
data.tar.gz: 406f771bee4bb2aca206ba9d8e45ce84461719ff09e39cc037b9890d07d25ec4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28228d72d77dd8adb749de865da095bb3bba3ecb81e6c3b2a03872e149d3a17807b7a45bb8c1b3ce33b05c2cf27f7d7a5a613bf80efb3a033c1c470d8d9b6852
|
7
|
+
data.tar.gz: 727e72075bf44398b34f7d25b9ee5d5844e744a08badeef1ffa64801210266c67ec8e24b60b3a54c660004ee7e8fae09494f52b205bb9df94807c4df6794fd96
|
@@ -0,0 +1,33 @@
|
|
1
|
+
name: release-manual
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_dispatch:
|
5
|
+
inputs:
|
6
|
+
next_version:
|
7
|
+
description: |
|
8
|
+
Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
|
9
|
+
required: true
|
10
|
+
default: 'skip'
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
release:
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v2
|
17
|
+
with:
|
18
|
+
token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
|
19
|
+
|
20
|
+
- run: |
|
21
|
+
git config --global user.name "metanorma-ci"
|
22
|
+
git config --global user.email "metanorma-ci@users.noreply.github.com"
|
23
|
+
|
24
|
+
- uses: ruby/setup-ruby@v1
|
25
|
+
with:
|
26
|
+
ruby-version: '2.6'
|
27
|
+
bundler-cache: true
|
28
|
+
|
29
|
+
- run: gem install gem-release
|
30
|
+
|
31
|
+
- if: github.event_name == 'workflow_dispatch' && github.event.inputs.next_version != 'skip'
|
32
|
+
run: gem bump --version ${{ github.event.inputs.next_version }} --tag --push
|
33
|
+
|
@@ -7,7 +7,7 @@ on:
|
|
7
7
|
jobs:
|
8
8
|
tag_repo:
|
9
9
|
runs-on: ubuntu-18.04
|
10
|
-
if: startsWith(github.event.client_payload.ref, 'refs/tags/v')
|
10
|
+
if: false # startsWith(github.event.client_payload.ref, 'refs/tags/v')
|
11
11
|
steps:
|
12
12
|
- uses: actions/checkout@v2
|
13
13
|
with:
|
@@ -32,7 +32,7 @@ jobs:
|
|
32
32
|
|
33
33
|
- run: |
|
34
34
|
rm -f bin/mnconvert.jar
|
35
|
-
|
35
|
+
rake bin/mnconvert.jar
|
36
36
|
|
37
37
|
- run: bundle exec rake
|
38
38
|
|
data/bin/mnconvert.jar
CHANGED
Binary file
|
data/lib/mnconvert/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mnconvert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
mnconvert converts Metanorma XML into NISO STS XML.
|
@@ -21,6 +21,7 @@ extensions: []
|
|
21
21
|
extra_rdoc_files: []
|
22
22
|
files:
|
23
23
|
- ".github/workflows/rake.yml"
|
24
|
+
- ".github/workflows/release-manual.yml"
|
24
25
|
- ".github/workflows/release-tag.yml"
|
25
26
|
- ".github/workflows/release.yml"
|
26
27
|
- ".gitignore"
|