mnconvert 1.13.1 → 1.14.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '084c072c4bb280db751ffb05fb0e593c2191f0c5a7b9dafbe69880510488b268'
4
- data.tar.gz: 9dc55ba0711e6ad14e7013cf0f5784bb123a1b21c991ee8d6a282f2b8316f1cf
3
+ metadata.gz: be0ea3afb67d3ce030ecde2c774ed29b2fcdbdc1881db7a9ae8910fdcf1f0e3b
4
+ data.tar.gz: fded1db54970ef59df71ffd59cc57c4b8a405a62d355774f75cf2a41218fa47e
5
5
  SHA512:
6
- metadata.gz: 5b63f18666b9306e3a1c386f62ed1d280127d3da56a8eccdea223189be604f07cde13321b2e880efb92bd3ad2483b2155cef7a3928e4e3d17911589b5d9359ac
7
- data.tar.gz: 0fd0ce62bc2517f095348c428ee5ea6a7cd7fe335c23478183bb73d82f30a5ffac91d9e4031d8e501db6c00c49e8a5834704a300278e43480f005a95b6d51bd4
6
+ metadata.gz: 3e13a9ecd6884a3d6d90a9602f4df563f2bee48b8b06677fe36863bf41f7b717f5ae7eab36c91ea382d723807d349239026b8d791d7c5d98ef58d98e6df1411a
7
+ data.tar.gz: 83e290e00eafca8e7c8300f0fb49cb7989308df10de968791a3c7948dffbb086f8505f337921dea6de94500d90afbdb43632beb2b4a794269abbbd9014e88127
@@ -7,7 +7,7 @@ on:
7
7
  jobs:
8
8
  tag_repo:
9
9
  runs-on: ubuntu-18.04
10
- if: false # startsWith(github.event.client_payload.ref, 'refs/tags/v')
10
+ if: 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
- rake bin/mnconvert.jar
35
+ bundle exec rake bin/mnconvert.jar
36
36
 
37
37
  - run: bundle exec rake
38
38
 
@@ -4,6 +4,7 @@ on:
4
4
  push:
5
5
  tags:
6
6
  - '*'
7
+ workflow_dispatch: # just for manual release if previous was failed
7
8
 
8
9
  jobs:
9
10
  release:
data/bin/mnconvert.jar CHANGED
Binary file
@@ -1,4 +1,4 @@
1
1
  module MnConvert
2
- VERSION = "1.13.1"
3
- MNCONVERT_JAR_VERSION = "1.13.0"
2
+ VERSION = "1.14.0"
3
+ MNCONVERT_JAR_VERSION = VERSION
4
4
  end
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: 1.13.1
4
+ version: 1.14.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: 2021-12-13 00:00:00.000000000 Z
11
+ date: 2022-01-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  mnconvert converts Metanorma XML into NISO STS XML.
@@ -21,7 +21,6 @@ extensions: []
21
21
  extra_rdoc_files: []
22
22
  files:
23
23
  - ".github/workflows/rake.yml"
24
- - ".github/workflows/release-manual.yml"
25
24
  - ".github/workflows/release-tag.yml"
26
25
  - ".github/workflows/release.yml"
27
26
  - ".gitignore"
@@ -1,33 +0,0 @@
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
-