fast_woothee 1.6.3.pre.beta.7 → 1.6.3.pre.beta.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3bca8e0a7964a15f5b013d80580eada812428afed4d991703a4d3b6504bdb00
4
- data.tar.gz: d100014bd718fdd3e5d03b64d6da5ffd8eb0ca9719b98bcf0008d0816e2ec2df
3
+ metadata.gz: 31df04ddf45c946a49f404cfff9654c1eb2fce3499bab578b49bffe7fca1a15e
4
+ data.tar.gz: 8c3da3b53cd64b13405706a7759c6b7bff631335a5cc30ffebcb9eb53d3a0fea
5
5
  SHA512:
6
- metadata.gz: 8c4cb7829421407df7035eb371f8c5397e51a3f830bc43a4c91cd3af337e32fabb7b67ad34666facb05b6fba61c207c73bf6e9028f82afd99d041660fea39312
7
- data.tar.gz: 7ec3bf4ad47a86ef3d2aafb1cdfd13bff0eff1ea198f7dbce79713a486630bd101a5ccaef2830be08e69a0a602bf12dab6d9a945d6ba7d78e0556f198963c38a
6
+ metadata.gz: 71b17246575b0dac42e37f19fd2252344a56bcc26f9762942cd5e23836e510421f5dd4ecfe2e7d46bba75970d729f3cf7d0ab6e1f7d592dfe4c773201bb5d7ab
7
+ data.tar.gz: aeeb951845324dcaba932b5f60fce9ac9e1828bd7644af27810c63139d8080ed7d4496679d93bd14e738407ed8fc031810cc8322cfffa3c1861c68a81ccc218e
@@ -2,10 +2,8 @@
2
2
  name: Deploy
3
3
 
4
4
  on:
5
- push:
6
- # Sequence of patterns matched against refs/tags
7
- tags:
8
- - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
5
+ release:
6
+ types: [created]
9
7
 
10
8
  jobs:
11
9
  build:
@@ -43,26 +41,17 @@ jobs:
43
41
  bundle exec rake thermite:tarball
44
42
  echo "::set-output name=tarball::$(echo fast_woothee-*.tar.gz)"
45
43
 
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
44
+ - name: Get the version
45
+ id: get_version
46
+ run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
57
47
 
58
48
  - name: Upload Release Asset
59
49
  id: upload-release-asset
60
50
  uses: actions/upload-release-asset@v1
61
51
  env:
62
52
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63
- if: always()
64
53
  with:
65
- upload_url: ${{ steps.create_release.outputs.upload_url }}
54
+ upload_url: ${{ github.event.release.upload_url }}
66
55
  asset_path: ${{ steps.package.outputs.tarball }}
67
56
  asset_name: ${{ steps.package.outputs.tarball }}
68
57
  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.7"
13
+ version = "1.6.3-beta.8"
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.7"
3
+ version = "1.6.3-beta.8"
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.7'
8
+ spec.version = '1.6.3-beta.8'
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.7
4
+ version: 1.6.3.pre.beta.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Ker-Seymer