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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 919f299e45d51013938939a28dd5b5f7f11af722327d0f3809f5c97e65589f7d
4
- data.tar.gz: '08631ba88eae9ec84d0b6b786f575d9ea99c68cadfe3fe7089c4391246770520'
3
+ metadata.gz: a3bca8e0a7964a15f5b013d80580eada812428afed4d991703a4d3b6504bdb00
4
+ data.tar.gz: d100014bd718fdd3e5d03b64d6da5ffd8eb0ca9719b98bcf0008d0816e2ec2df
5
5
  SHA512:
6
- metadata.gz: 5dc0a97484cfe87b3b5ae53a4f6eddeb8386dd073982de2638b4608addf08e5ecbd077b441d8d0ca9110b4864d5c9143e3298e7eb2c62cacb12f3f2c7d23eda7
7
- data.tar.gz: 1635791ee5fa816cf6cc0cdf1cc73d195c824ab6f6a206a29b958efcfbfcb5839b8b240c970743b707694ce5eafbf86b18565c934bc2e4a1c723439f7ed855be
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: actions/setup-ruby@v1
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: Get the version
47
- id: get_version
48
- run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
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: https://github.com/ianks/fast_woothee/releases/tag/${{ steps.get_version.outputs.VERSION }}/assets
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.6"
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
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "fast_woothee"
3
- version = "1.6.3-beta.6"
3
+ version = "1.6.3-beta.7"
4
4
  authors = ["Ian Ker-Seymer <i.kerseymer@gmail.com>"]
5
5
  repository = "https://github.com/ianks/fast_woothee"
6
6
  publish = false
@@ -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.6'
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_woothee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.3.pre.beta.6
4
+ version: 1.6.3.pre.beta.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Ker-Seymer