vagrant-zones 0.1.56 → 0.1.58

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: 1528b32a50309537676f60a94fa55de07bb743cc524a5aea0f711d99879dc23c
4
- data.tar.gz: d8ba93a9e3c100a9c8ce6291475a3e7833da53f3519f4801dff9526e2548c9a7
3
+ metadata.gz: 795ef57f913ea916413a363f06dbb9bcef30bb3b38b00cc65a9deba87a385a4b
4
+ data.tar.gz: c919a5396ee3f83f8907696e6039d5b264f6eae1e19325055ce02a4968b4a6b0
5
5
  SHA512:
6
- metadata.gz: e92db9978438db8ef5d05857cfea9abaa615ee05710e023785a56673e51e7a8eb618361defceb4e8a3438e97c7fdee04221d9a42502aba7667e24d7f178cff8d
7
- data.tar.gz: 36ef52d0e80837ac9b7004673b3af871a07ff010407e8444d665905a80dcef67189716c67a1f7b8f3183111754aa5b358f93766b110e3c88ea96093affd3cb5e
6
+ metadata.gz: f27fa5b2de58f1bedb8b08b577918a47193bf4e23a63d87bbc3b27337dbd91d644477dead30b9a5ff0f0824caa461602dd92d155d0150710b24e41dc4ed6aaaf
7
+ data.tar.gz: 360e347925d053b3eb4f7da0d2352729d0bc22545029b8b7b98abaf9c1d97e4382f368837c4c7d9794603c08353a8a56b61e1804bb4937818c6e50be58b06768
@@ -0,0 +1,72 @@
1
+ # .github/workflows/release.yml
2
+
3
+ name: Test, Lint, Release and Publish
4
+
5
+ on:
6
+ push:
7
+ branches:
8
+ - nightly
9
+
10
+ jobs:
11
+ release-please:
12
+ runs-on: ubuntu-latest
13
+ env:
14
+ GEM_NAME: "vagrant-zones"
15
+ steps:
16
+ - uses: google-github-actions/release-please-action@v3
17
+ id: release
18
+ with:
19
+ release-type: ruby
20
+ package-name: "${{ env.GEM_NAME }}-nightly"
21
+ bump-minor-pre-major: true
22
+ bump-patch-for-minor-pre-major: true
23
+ version-file: "lib/${{ env.GEM_NAME }}/version.rb"
24
+ default-branch: nightly
25
+
26
+ # Checkout code if release was created
27
+ - uses: actions/checkout@v2
28
+ if: ${{ steps.release.outputs.release_created }}
29
+
30
+ # Setup ruby if a release was created
31
+ - name: Set up Ruby 3.0.0
32
+ uses: ruby/setup-ruby@v1
33
+ with:
34
+ ruby-version: 3.0.0
35
+ if: ${{ steps.release.outputs.release_created }}
36
+
37
+ # Bundle install
38
+ - run: bundle install
39
+ if: ${{ steps.release.outputs.release_created }}
40
+
41
+ # Check if Passing Lint Requirements
42
+ - name: Run Rake tests
43
+ id: tests
44
+ run: bundle exec rake
45
+ if: ${{ steps.release.outputs.release_created }}
46
+
47
+ # Publish to GPR
48
+ - name: Publish to GPR
49
+ run: |
50
+ mkdir -p $HOME/.gem
51
+ touch $HOME/.gem/credentials
52
+ chmod 0600 $HOME/.gem/credentials
53
+ printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
54
+ gem build *.gemspec
55
+ gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
56
+ env:
57
+ GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
58
+ OWNER: ${{ github.repository_owner }}
59
+ if: steps.tests.outputs.exit_code == 0 && steps.release.outputs.release_created
60
+
61
+ # Publish to Ruby Gems
62
+ - name: Publish to RubyGems
63
+ run: |
64
+ mkdir -p $HOME/.gem
65
+ touch $HOME/.gem/credentials
66
+ chmod 0600 $HOME/.gem/credentials
67
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
68
+ gem build *.gemspec
69
+ gem push *.gem
70
+ env:
71
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
72
+ if: steps.tests.outputs.exit_code == 0 && steps.release.outputs.release_created
@@ -13,7 +13,7 @@ jobs:
13
13
  env:
14
14
  GEM_NAME: "vagrant-zones"
15
15
  steps:
16
- - uses: GoogleCloudPlatform/release-please-action@v2
16
+ - uses: google-github-actions/release-please-action@v3
17
17
  id: release
18
18
  with:
19
19
  release-type: ruby
data/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.58](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.57...v0.1.58) (2022-12-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * default branch ([b8593dd](https://github.com/STARTcloud/vagrant-zones/commit/b8593dd0b4b758ac6884b54eb58c190c41b17359))
9
+ * include nightly releases ([d098644](https://github.com/STARTcloud/vagrant-zones/commit/d0986443f42ce21a8384dd7672c4c14a897954e2))
10
+ * nightly releases ([95ab672](https://github.com/STARTcloud/vagrant-zones/commit/95ab672ce0a3434c624072dc5e2c37935fb0f89d))
11
+
12
+ ## [0.1.57](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.56...v0.1.57) (2022-12-10)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * auto-release bump version ([ab58359](https://github.com/STARTcloud/vagrant-zones/commit/ab583598441d8ea67c02c8451374a5e17bf1935e))
18
+ * Auto-release versioning ([4e6be46](https://github.com/STARTcloud/vagrant-zones/commit/4e6be46b391a23a723cbc89bf4b168806c324cde))
19
+ * change release please ([c4917ee](https://github.com/STARTcloud/vagrant-zones/commit/c4917eea2de15ada963df92057696b1d82f63727))
20
+ * freeze lint warning ([bed2db3](https://github.com/STARTcloud/vagrant-zones/commit/bed2db3cee437cc14d33a382adb6b09c23a799d4))
21
+ * really really fix the lint warning ([c7c73cb](https://github.com/STARTcloud/vagrant-zones/commit/c7c73cb350db3ff35d0641dd800daf2fa3620433))
22
+ * Release Version Update ([f6ad1d5](https://github.com/STARTcloud/vagrant-zones/commit/f6ad1d5705eb3ea0d91677e24996e8719d19837b))
23
+ * version autoupdate ([15b3a3c](https://github.com/STARTcloud/vagrant-zones/commit/15b3a3c5a3ffdcf91ecd6cf8a38f2baa07283077))
24
+ * versioning ([5763ff2](https://github.com/STARTcloud/vagrant-zones/commit/5763ff2f6ef9ec3993b680ec3bec10128feaf2e1))
25
+
3
26
  ### [0.1.56](https://www.github.com/STARTcloud/vagrant-zones/compare/v0.1.55...v0.1.56) (2022-12-09)
4
27
 
5
28
 
data/README.md CHANGED
@@ -47,6 +47,10 @@ Publiched Package locations:
47
47
  To install it in a standard vagrant environment:
48
48
 
49
49
  `vagrant plugin install vagrant-zones`
50
+
51
+ To install it in a development vagrant environment:
52
+
53
+ `vagrant plugin install vagrant-zones-nightly`
50
54
 
51
55
  ## Contributing
52
56
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module VagrantPlugins
4
4
  module ProviderZone
5
- VERSION = '0.1.56'
5
+ VERSION = '0.1.58'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-zones
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.56
4
+ version: 0.1.58
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Gilbert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-09 00:00:00.000000000 Z
11
+ date: 2022-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -305,6 +305,7 @@ files:
305
305
  - ".github/ISSUE_TEMPLATE/feature_request.md"
306
306
  - ".github/dependabot.yml"
307
307
  - ".github/workflows/codeql-analysis.yml"
308
+ - ".github/workflows/lint-release-and-publish-nightly.yml"
308
309
  - ".github/workflows/lint-release-and-publish.yml"
309
310
  - ".github/workflows/ruby-lint.yml"
310
311
  - ".gitignore"