fast_woothee 1.6.3.pre.beta.6 → 1.6.3.pre.beta.7
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/deploy.yml +14 -5
- data/Cargo.lock +1 -1
- data/Cargo.toml +1 -1
- data/fast_woothee.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3bca8e0a7964a15f5b013d80580eada812428afed4d991703a4d3b6504bdb00
|
|
4
|
+
data.tar.gz: d100014bd718fdd3e5d03b64d6da5ffd8eb0ca9719b98bcf0008d0816e2ec2df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c4cb7829421407df7035eb371f8c5397e51a3f830bc43a4c91cd3af337e32fabb7b67ad34666facb05b6fba61c207c73bf6e9028f82afd99d041660fea39312
|
|
7
|
+
data.tar.gz: 7ec3bf4ad47a86ef3d2aafb1cdfd13bff0eff1ea198f7dbce79713a486630bd101a5ccaef2830be08e69a0a602bf12dab6d9a945d6ba7d78e0556f198963c38a
|
|
@@ -22,7 +22,7 @@ jobs:
|
|
|
22
22
|
- uses: actions/checkout@v2
|
|
23
23
|
|
|
24
24
|
- name: Set up Ruby ${{ matrix.ruby }}
|
|
25
|
-
uses:
|
|
25
|
+
uses: ruby/setup-ruby@v1
|
|
26
26
|
with:
|
|
27
27
|
version: $${{ matrix.ruby }}
|
|
28
28
|
|
|
@@ -43,17 +43,26 @@ jobs:
|
|
|
43
43
|
bundle exec rake thermite:tarball
|
|
44
44
|
echo "::set-output name=tarball::$(echo fast_woothee-*.tar.gz)"
|
|
45
45
|
|
|
46
|
-
- name:
|
|
47
|
-
id:
|
|
48
|
-
|
|
46
|
+
- name: Create Release
|
|
47
|
+
id: create_release
|
|
48
|
+
uses: actions/create-release@v1
|
|
49
|
+
continue-on-error: true
|
|
50
|
+
env:
|
|
51
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
|
52
|
+
with:
|
|
53
|
+
tag_name: ${{ github.ref }}
|
|
54
|
+
release_name: ${{ github.ref }}
|
|
55
|
+
draft: false
|
|
56
|
+
prerelease: false
|
|
49
57
|
|
|
50
58
|
- name: Upload Release Asset
|
|
51
59
|
id: upload-release-asset
|
|
52
60
|
uses: actions/upload-release-asset@v1
|
|
53
61
|
env:
|
|
54
62
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
63
|
+
if: always()
|
|
55
64
|
with:
|
|
56
|
-
upload_url:
|
|
65
|
+
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
57
66
|
asset_path: ${{ steps.package.outputs.tarball }}
|
|
58
67
|
asset_name: ${{ steps.package.outputs.tarball }}
|
|
59
68
|
asset_content_type: application/x-gzip
|
data/Cargo.lock
CHANGED
|
@@ -10,7 +10,7 @@ dependencies = [
|
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "fast_woothee"
|
|
13
|
-
version = "1.6.3-beta.
|
|
13
|
+
version = "1.6.3-beta.7"
|
|
14
14
|
dependencies = [
|
|
15
15
|
"rutie 0.8.1 (git+https://github.com/danielpclark/rutie)",
|
|
16
16
|
"woothee 0.11.0 (git+https://github.com/woothee/woothee-rust)",
|
data/Cargo.toml
CHANGED
data/fast_woothee.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'fast_woothee'
|
|
8
|
-
spec.version = '1.6.3-beta.
|
|
8
|
+
spec.version = '1.6.3-beta.7'
|
|
9
9
|
spec.authors = ['Ian Ker-Seymer']
|
|
10
10
|
spec.email = ['i.kerseymer@gmail.com']
|
|
11
11
|
|