finapps 5.0.41 → 5.0.43
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yaml +2 -2
- data/.github/workflows/release.yml +13 -2
- data/lib/finapps/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: 25bea095f4796915e3b73d50300279a31fd052ca797da34c91a41078f9eecc2b
|
4
|
+
data.tar.gz: 2f4123341bbc2703a26d8ad361428fb050a06c797390d7b57f2b67f07bef90de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03c8eccc181f51654a07bad7769ce759707d6f6a54a21a806ce0b924ef7bce7ee17c1f27751a86f9659d83e6e7005988dd48bad3d51127bc1957f6764a392116
|
7
|
+
data.tar.gz: 01205c7a1e01a4267d5dd9ad4e10789872a2e6bf47e29c354ed2c9939c806e01bdfa00b1a1c1c36012397cbc6b235760c99486f8b3f71f17c912ad6e458cf059
|
data/.github/workflows/main.yaml
CHANGED
@@ -18,7 +18,7 @@ jobs:
|
|
18
18
|
with:
|
19
19
|
ruby-version: '2.6'
|
20
20
|
|
21
|
-
- uses: actions/cache@
|
21
|
+
- uses: actions/cache@v2
|
22
22
|
with:
|
23
23
|
path: vendor/bundle
|
24
24
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
@@ -27,7 +27,7 @@ jobs:
|
|
27
27
|
|
28
28
|
- name: Install gems
|
29
29
|
run: |
|
30
|
-
gem install bundler
|
30
|
+
gem install -N bundler
|
31
31
|
bundle config path vendor/bundle
|
32
32
|
bundle install --jobs 4 --retry 3
|
33
33
|
|
@@ -12,6 +12,7 @@ jobs:
|
|
12
12
|
steps:
|
13
13
|
- uses: actions/checkout@master
|
14
14
|
with:
|
15
|
+
persist-credentials: false
|
15
16
|
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
|
16
17
|
|
17
18
|
- uses: actions/setup-ruby@v1
|
@@ -22,13 +23,23 @@ jobs:
|
|
22
23
|
id: get_version
|
23
24
|
uses: battila7/get-version-action@v2
|
24
25
|
|
25
|
-
- name: Bump version
|
26
|
+
- name: Bump version
|
26
27
|
run: |
|
27
28
|
gem install -N gem-release
|
28
29
|
git config --local user.email "action@github.com"
|
29
30
|
git config --local user.name "GitHub Action"
|
30
31
|
gem bump --skip-ci --version ${{ steps.get_version.outputs.version-without-v }}
|
31
|
-
|
32
|
+
|
33
|
+
- name: Push changes
|
34
|
+
uses: ad-m/github-push-action@master
|
35
|
+
with:
|
36
|
+
# GitHub Actions token does not support pushing to protected branches.
|
37
|
+
# github_token: ${{ secrets.GITHUB_TOKEN }}
|
38
|
+
#
|
39
|
+
# A manually populated`PERSONAL_ACCESS_TOKEN` environment variable
|
40
|
+
# with permissions to push to a protected branch must be used.
|
41
|
+
# not ideal - keep eyes open for a better solution
|
42
|
+
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
32
43
|
|
33
44
|
- name: Release gem to rubygems.org
|
34
45
|
run: |
|
data/lib/finapps/version.rb
CHANGED