github_actions_testing 0.1.2 → 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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6fe83d4bd71b139198b9694e3f70f2189badf6b5a1f594924cf0630f12473c4e
|
4
|
+
data.tar.gz: c223d25e61e218fe1f750f66b92f9544fc66cb74a6f8508501e6146948ecf620
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74bb803edb8f5c27eca6b095af788dad02fed1da4931cb98170de849f1d1211c308cd743f66f2d2e22f6d5412cd1688b3f6c69c60757dcec533ecd6d0c80e6bf
|
7
|
+
data.tar.gz: 94564bbbdedcf2909e6c5744154798370e0ad90d8ab4628fa2db78d94e402ad115f5af02a293b884aac21586fd301a3d38fbf2f49aa7d0b069f45b2c6c42999c
|
@@ -32,7 +32,7 @@ jobs:
|
|
32
32
|
git config --global user.email "charlie.tanksley@healthfinch.com"
|
33
33
|
git config --global user.name "Charlie Tanksley"
|
34
34
|
chmod 0600 $HOME/.gem/credentials
|
35
|
-
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n
|
35
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
36
36
|
bundle exec rake release
|
37
37
|
env:
|
38
38
|
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
name: PR Merge
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
paths-ignore:
|
8
|
+
- '**/version.rb'
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
build:
|
12
|
+
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v1
|
17
|
+
- name: Set up Ruby 2.6
|
18
|
+
uses: actions/setup-ruby@v1
|
19
|
+
with:
|
20
|
+
ruby-version: 2.6.x
|
21
|
+
- name: Build and test with Rake
|
22
|
+
run: |
|
23
|
+
gem install bundler
|
24
|
+
bundle install --jobs 4 --retry 3
|
25
|
+
bundle exec rake
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github_actions_testing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charlie Tanksley
|
@@ -73,9 +73,9 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
-
- ".github/actions/workflows/simple.yml"
|
77
76
|
- ".github/workflows/gempush.yml"
|
78
|
-
- ".github/workflows/
|
77
|
+
- ".github/workflows/new_pr.yml"
|
78
|
+
- ".github/workflows/pr_merge.yml"
|
79
79
|
- ".gitignore"
|
80
80
|
- ".rspec"
|
81
81
|
- Gemfile
|
@@ -1,17 +0,0 @@
|
|
1
|
-
name: CI
|
2
|
-
|
3
|
-
on: [push]
|
4
|
-
|
5
|
-
jobs:
|
6
|
-
build:
|
7
|
-
|
8
|
-
runs-on: ubuntu-latest
|
9
|
-
|
10
|
-
steps:
|
11
|
-
- uses: actions/checkout@v1
|
12
|
-
- name: Run a one-line script
|
13
|
-
run: echo Hello, world!
|
14
|
-
- name: Run a multi-line script
|
15
|
-
run: |
|
16
|
-
echo Add other actions to build,
|
17
|
-
echo test, and deploy your project.
|