synvert 1.6.0 → 1.6.1
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 +4 -4
- data/.github/workflows/main.yml +0 -1
- data/.github/workflows/publish_docker_image.yml +31 -0
- data/CHANGELOG.md +5 -0
- data/Dockerfile +5 -0
- data/Gemfile.lock +1 -1
- data/lib/synvert/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '013369fe45b0c15dc1298e1e30b2ff5d590db39d12466f85f7033d2a5174b838'
|
|
4
|
+
data.tar.gz: bef9660a67e33f43e0bd9478a537d823b811bac55c1a3b435e18cb00fdf7a244
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0660bfead366036630b23cab7120e65378ffc8aaf1111b96ec5e9661c372bd2f20b2bb278bf06dc1fd030240f3f24d6c285c716f4c2592aa952acaa2c9eb794a
|
|
7
|
+
data.tar.gz: 9c49f28e48fe0edfc27898a7c39e24fc647a19d0b9af77b8a535d2cc69507b54fb7bfa39189b5d2e0e31a098f9af0681ca0dca4da0cff665b0f0eff1fc73b3a0
|
data/.github/workflows/main.yml
CHANGED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: Publish Docker Image
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- '*'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build-and-publish:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- name: Check out the repository
|
|
13
|
+
uses: actions/checkout@v3
|
|
14
|
+
|
|
15
|
+
- name: Extract tag name
|
|
16
|
+
id: get_tag
|
|
17
|
+
run: echo "::set-output name=TAG_NAME::${GITHUB_REF#refs/tags/v}"
|
|
18
|
+
|
|
19
|
+
- name: Log in to Docker Hub
|
|
20
|
+
uses: docker/login-action@v2
|
|
21
|
+
with:
|
|
22
|
+
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
23
|
+
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
24
|
+
|
|
25
|
+
- name: Build and push Docker image
|
|
26
|
+
uses: docker/build-push-action@v3
|
|
27
|
+
with:
|
|
28
|
+
context: .
|
|
29
|
+
push: true
|
|
30
|
+
tags: xinminlabs/synvert-ruby:${{ steps.get_tag.outputs.TAG_NAME }}
|
|
31
|
+
|
data/CHANGELOG.md
CHANGED
data/Dockerfile
ADDED
data/Gemfile.lock
CHANGED
data/lib/synvert/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: synvert
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Richard Huang
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-01-
|
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: synvert-core
|
|
@@ -33,9 +33,11 @@ extensions: []
|
|
|
33
33
|
extra_rdoc_files: []
|
|
34
34
|
files:
|
|
35
35
|
- ".github/workflows/main.yml"
|
|
36
|
+
- ".github/workflows/publish_docker_image.yml"
|
|
36
37
|
- ".gitignore"
|
|
37
38
|
- ".rspec"
|
|
38
39
|
- CHANGELOG.md
|
|
40
|
+
- Dockerfile
|
|
39
41
|
- Gemfile
|
|
40
42
|
- Gemfile.lock
|
|
41
43
|
- Guardfile
|