omniauth-lever 0.1.0 → 0.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 +3 -10
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/lib/omniauth/lever/version.rb +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: 57b105552c9b73b40e3e7348a55a5efe5f8a4157ce2a31117dd59de4d51c31a5
|
4
|
+
data.tar.gz: 8f5865e9aebcfc30c558e5facb35671c0b2b84d35dcfd6e2eeb1766faa533c57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7b7d61b842d84fb3fd05c42d0ee3607f29da56c389e06b5d97e9e3c6ce992f20fac4dfd7fb06134caa8f0cc2b5dc9cc7d28fb8379dd653385e937874179eea8
|
7
|
+
data.tar.gz: a4eabf690ee041cfd181aba73b6e4dfedad97c1543609d5cf2b31e19d203947e8323129b983c48a8283631aaad6129fb266f24725b35bea3d74be287c858a2d7
|
@@ -14,23 +14,16 @@ jobs:
|
|
14
14
|
package-name: omniauth-lever
|
15
15
|
bump-minor-pre-major: true
|
16
16
|
version-file: "lib/omniauth/lever/version.rb"
|
17
|
-
# Checkout code if release was created
|
18
17
|
- uses: actions/checkout@v2
|
19
|
-
|
20
|
-
# Setup ruby if a release was created
|
18
|
+
if: ${{ steps.release.outputs.release_created }}
|
21
19
|
- uses: ruby/setup-ruby@v1
|
22
20
|
with:
|
23
21
|
ruby-version: 2.7.4
|
24
|
-
|
25
|
-
# Bundle install
|
22
|
+
if: ${{ steps.release.outputs.release_created }}
|
26
23
|
- run: bundle install
|
27
24
|
if: ${{ steps.release.outputs.release_created }}
|
28
25
|
- name: publish gem
|
29
26
|
run: |
|
30
|
-
pwd
|
31
|
-
echo $GITHUB_WORKSPACE
|
32
|
-
echo $(ls | tr "\n" " ")
|
33
|
-
echo "Done LS"
|
34
27
|
ruby --version
|
35
28
|
gem --version
|
36
29
|
mkdir -p $HOME/.gem
|
@@ -41,4 +34,4 @@ jobs:
|
|
41
34
|
gem push *.gem
|
42
35
|
env:
|
43
36
|
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
44
|
-
|
37
|
+
if: ${{ steps.release.outputs.release_created }}
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### [0.1.1](https://www.github.com/ScreenLoop/omniauth-lever/compare/v0.1.0...v0.1.1) (2021-09-10)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Fix automatic release script ([fe98e5d](https://www.github.com/ScreenLoop/omniauth-lever/commit/fe98e5d34d1d8394197f55570cc35b5057e81bdf))
|
9
|
+
|
3
10
|
## 0.1.0 (2021-09-10)
|
4
11
|
|
5
12
|
|
data/Gemfile.lock
CHANGED