permanent_records 5.0.0 → 5.0.0.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/gempush.yml +1 -0
- data/VERSION +1 -1
- data/bin/gempush-if-changed +4 -0
- 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: b6f3ec93fa6957f43a06ddd6fd8526284505b0567bcc6660befbc1730d5285b6
|
|
4
|
+
data.tar.gz: 637f52efbdaa2bd89e620a89700ae600771624d7a16476ff83acfccf8fbb66c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 281c172b03285f976163ac1d1a1eda7549d88cca3174bbfeb5d8f4efc053588b146cac94b1067f161a594c2b84f7bcf1cc5be220d2b355e93403f874bad36d1f
|
|
7
|
+
data.tar.gz: c04175c6f7418431cd4425f441f8012048d700d70214d93e9c5f9a490bcc9f3ed3036b40635660a457e435eb5b376ab1a16f83e11260cd592aadc33b6b06f3ce
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.0.0
|
|
1
|
+
5.0.0.1
|
data/bin/gempush-if-changed
CHANGED
|
@@ -5,6 +5,10 @@ if git diff --name-only HEAD..HEAD^ | egrep -q '^VERSION$'; then
|
|
|
5
5
|
# The VERSION file changed in the last commit, build the gem and push
|
|
6
6
|
gem build *.gemspec
|
|
7
7
|
gem push *.gem
|
|
8
|
+
|
|
9
|
+
# We set the GITHUB_TOKEN variable from the repo's 'Secrets' admin panel.
|
|
10
|
+
git remote set-url --push origin https://JackDanger:${GITHUB_TOKEN}@github.com/JackDanger/permanent_records.git
|
|
11
|
+
|
|
8
12
|
version=$(cat VERSION)
|
|
9
13
|
git tag ${version}
|
|
10
14
|
git push origin ${version}
|