vagrant-zones 0.0.12 → 0.1.3
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/CHANGELOG.md +14 -0
- data/lib/vagrant-zones/version.rb +1 -1
- metadata +1 -2
- data/.github/workflows/gem-push.yml +0 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4f79eefa3ab3f639f13182d9ce44cd0c335be15a7b31746a353be86685c8949
|
|
4
|
+
data.tar.gz: 4616c7c7e28015d457f852b8c9defcdbb382e841730a717c64673b6fef5490c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70d913181b7eb9d00b5a876d0f2c4d0bf84e8696183b3fa3965d319f78726d771d20fd7ef1dfe9bc7c7629207c7b5a7de9a118cc44132990ebb13c84d7498606
|
|
7
|
+
data.tar.gz: 788d1550bd7d142779d0ee855932911909c0ac9d3bb9bbbd852106c1d9c0a1d8d2b0857bb48470e1cffc3a122377f20bf04f92997367255416dbfbeb357a45d5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### [0.1.3](https://www.github.com/STARTcloud/vagrant-zones/compare/v0.1.2...v0.1.3) (2022-07-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* version update failed ([0ff3ba8](https://www.github.com/STARTcloud/vagrant-zones/commit/0ff3ba81a8dce0ec5784c937f784e25164589c93))
|
|
9
|
+
|
|
10
|
+
### [0.1.2](https://www.github.com/STARTcloud/vagrant-zones/compare/v0.1.1...v0.1.2) (2022-07-13)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* Update version ([411cce3](https://www.github.com/STARTcloud/vagrant-zones/commit/411cce31d2221a2759cca75d579a81929dedc80c))
|
|
16
|
+
|
|
3
17
|
### [0.1.1](https://www.github.com/STARTcloud/vagrant-zones/compare/v0.1.0...v0.1.1) (2022-07-13)
|
|
4
18
|
|
|
5
19
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-zones
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mark Gilbert
|
|
@@ -319,7 +319,6 @@ files:
|
|
|
319
319
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
|
320
320
|
- ".github/dependabot.yml"
|
|
321
321
|
- ".github/workflows/codeql-analysis.yml"
|
|
322
|
-
- ".github/workflows/gem-push.yml"
|
|
323
322
|
- ".github/workflows/lint-release-and-publish.yml"
|
|
324
323
|
- ".github/workflows/ruby-lint.yml"
|
|
325
324
|
- ".gitignore"
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
name: Ruby Gem publish
|
|
2
|
-
|
|
3
|
-
on: [workflow_dispatch]
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
build:
|
|
7
|
-
name: Build + Publish
|
|
8
|
-
runs-on: ubuntu-latest
|
|
9
|
-
permissions:
|
|
10
|
-
contents: read
|
|
11
|
-
packages: write
|
|
12
|
-
|
|
13
|
-
steps:
|
|
14
|
-
- uses: actions/checkout@v2
|
|
15
|
-
|
|
16
|
-
- name: Set up Ruby 2.7
|
|
17
|
-
uses: ruby/setup-ruby@v1
|
|
18
|
-
with:
|
|
19
|
-
ruby-version: 2.7
|
|
20
|
-
|
|
21
|
-
# Bundle install
|
|
22
|
-
- run: bundle install
|
|
23
|
-
|
|
24
|
-
# Publish to Ruby Gems
|
|
25
|
-
- name: Publish to RubyGems
|
|
26
|
-
run: |
|
|
27
|
-
mkdir -p $HOME/.gem
|
|
28
|
-
touch $HOME/.gem/credentials
|
|
29
|
-
chmod 0600 $HOME/.gem/credentials
|
|
30
|
-
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
31
|
-
cat $HOME/.gem/credentials
|
|
32
|
-
gem build *.gemspec
|
|
33
|
-
gem push *.gem
|
|
34
|
-
env:
|
|
35
|
-
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|