modulesync 2.1.0 → 2.1.1
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/release.yml +2 -1
- data/CHANGELOG.md +6 -0
- data/modulesync.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: 8801f1e8404946dfdbaf9d01150dd1c5a0f1d339af7bcdc06fd9e27613487f14
|
|
4
|
+
data.tar.gz: b7933278563de1d478e1f5c0bcda0d52dda43acbccb32a58a737a13ae97c05ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d265ff19bc634007ddbcac4755e0d163bdbdec2670f8b523a911c0a37bec71dcd0ada0cf1d51cba1a64b4cf709e4accc3055fbe3bbade1baba242719414443e6
|
|
7
|
+
data.tar.gz: a780adc783ec07bb22093e2f10d834da004e097588c0dd0adc3164c61369d293f4d02e153b7cf60d8769cf74d783eb32a85928448b1dc2bcd61f55ab0ce90f78
|
|
@@ -24,7 +24,8 @@ jobs:
|
|
|
24
24
|
GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
|
|
25
25
|
- name: Setup GitHub packages access
|
|
26
26
|
run: |
|
|
27
|
+
mkdir -p ~/.gem
|
|
27
28
|
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
|
|
28
|
-
chmod 0600
|
|
29
|
+
chmod 0600 ~/.gem/credentials
|
|
29
30
|
- name: Publish gem to GitHub packages
|
|
30
31
|
run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.1.1](https://github.com/voxpupuli/modulesync/tree/2.1.1) (2021-06-15)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/2.1.0...2.1.1)
|
|
8
|
+
|
|
9
|
+
The 2.1.0 release didn't make it to github packages. 2.1.1 is a new release with identical code.
|
|
10
|
+
|
|
5
11
|
## [2.1.0](https://github.com/voxpupuli/modulesync/tree/2.1.0) (2021-06-15)
|
|
6
12
|
|
|
7
13
|
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/2.0.2...2.1.0)
|
data/modulesync.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = 'modulesync'
|
|
6
|
-
spec.version = '2.1.
|
|
6
|
+
spec.version = '2.1.1'
|
|
7
7
|
spec.authors = ['Vox Pupuli']
|
|
8
8
|
spec.email = ['voxpupuli@groups.io']
|
|
9
9
|
spec.summary = 'Puppet Module Synchronizer'
|