jekyll_test_plugin 0.3.0 → 0.3.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27eafd4e0a07a2b40f61a00ff4d03d0297ac754f536ae18f867420cbc2960713
|
|
4
|
+
data.tar.gz: 38a5b8ce8fbb3513ced5fa579ab6dd7b34aa32ecfbe12729c3e5359026d26626
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e82333482c2736b249732b575f91a5cfec1d9d0f27b6be138890747c5e408206a7fbcc6e10963a4e3a1d70aceab8f12a3745b6383e08bf8d8fa86b095f3126f8
|
|
7
|
+
data.tar.gz: 26a4582592b68a8b69e1c6e5acf04f2c06cf9c726ed09ef624df7d468dcded4b0ed72657fe78cee8761818d5895bd84074a64d75c9cc1e4457171468b9f6ccd7
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: Conventional Commit Check
|
|
2
2
|
|
|
3
3
|
permissions:
|
|
4
4
|
pull-requests: read
|
|
@@ -11,7 +11,7 @@ on:
|
|
|
11
11
|
- main
|
|
12
12
|
|
|
13
13
|
jobs:
|
|
14
|
-
|
|
14
|
+
commit_lint:
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
steps:
|
|
17
17
|
- name: Lint Conventional Commit Usage
|
|
@@ -1,26 +1,43 @@
|
|
|
1
|
-
name: "Release
|
|
1
|
+
name: "Release, please!"
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
5
|
branches:
|
|
6
|
-
- main
|
|
7
6
|
- master
|
|
8
7
|
|
|
9
8
|
permissions:
|
|
10
9
|
contents: write
|
|
11
|
-
packages: write
|
|
12
10
|
pull-requests: write
|
|
13
11
|
|
|
14
12
|
jobs:
|
|
15
13
|
release-please:
|
|
16
|
-
name: Release Please
|
|
17
14
|
runs-on: ubuntu-latest
|
|
15
|
+
outputs:
|
|
16
|
+
release_created: ${{ steps.release.outputs.release_created }}
|
|
17
|
+
tag_name: ${{ steps.release.outputs.tag_name }}
|
|
18
18
|
steps:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
19
|
+
- name: Run Release Please
|
|
20
|
+
id: release
|
|
21
|
+
uses: googleapis/release-please-action@v4
|
|
22
|
+
with:
|
|
23
|
+
config-file: .github/release-please-config.json
|
|
24
|
+
manifest-file: .github/release-please-manifest.json
|
|
25
|
+
token: ${{ secrets.JEKYLLBOT_TOKEN }}
|
|
26
|
+
|
|
27
|
+
publish-gem:
|
|
28
|
+
needs: release-please
|
|
29
|
+
if: ${{ needs.release-please.outputs.release_created == 'true' }}
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
permissions:
|
|
32
|
+
id-token: write
|
|
33
|
+
contents: write
|
|
34
|
+
steps:
|
|
35
|
+
- name: Checkout Repository
|
|
36
|
+
uses: actions/checkout@v6
|
|
37
|
+
- name: Set up Ruby
|
|
38
|
+
uses: ruby/setup-ruby@v1
|
|
39
|
+
with:
|
|
40
|
+
ruby-version: '3.3'
|
|
41
|
+
bundler-cache: true
|
|
42
|
+
- name: Build and Publish Gem
|
|
43
|
+
uses: rubygems/release-gem@v1
|
data/History.markdown
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.1](https://github.com/jekyll/jekyll-test-gem-plugin/compare/v0.3.0...v0.3.1) (2026-03-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update release workflow name ([#10](https://github.com/jekyll/jekyll-test-gem-plugin/issues/10)) ([f120f78](https://github.com/jekyll/jekyll-test-gem-plugin/commit/f120f78b043bfb655b599903582b9a374300ddea))
|
|
9
|
+
* update workflow names ([#9](https://github.com/jekyll/jekyll-test-gem-plugin/issues/9)) ([b19352b](https://github.com/jekyll/jekyll-test-gem-plugin/commit/b19352b29833855bc67f50ff03943539d347fa80))
|
|
10
|
+
|
|
3
11
|
## [0.3.0](https://github.com/jekyll/jekyll-test-gem-plugin/compare/v0.2.0...v0.3.0) (2025-02-05)
|
|
4
12
|
|
|
5
13
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll_test_plugin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Parker Moore
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -62,7 +62,6 @@ files:
|
|
|
62
62
|
- ".github/release-please-config.json"
|
|
63
63
|
- ".github/release-please-manifest.json"
|
|
64
64
|
- ".github/workflows/conventional_commits.yml"
|
|
65
|
-
- ".github/workflows/gem.yml"
|
|
66
65
|
- ".github/workflows/release-please.yml"
|
|
67
66
|
- ".gitignore"
|
|
68
67
|
- Gemfile
|
|
@@ -92,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
91
|
- !ruby/object:Gem::Version
|
|
93
92
|
version: '0'
|
|
94
93
|
requirements: []
|
|
95
|
-
rubygems_version: 3.
|
|
94
|
+
rubygems_version: 3.5.22
|
|
96
95
|
signing_key:
|
|
97
96
|
specification_version: 4
|
|
98
97
|
summary: A test Jekyll plugin as a gem
|
data/.github/workflows/gem.yml
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
name: Release Gem
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- master
|
|
7
|
-
paths:
|
|
8
|
-
- "lib/**/version.rb"
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
release:
|
|
12
|
-
if: "github.repository_owner == 'jekyll'"
|
|
13
|
-
name: "Release Gem (Ruby ${{ matrix.ruby_version }})"
|
|
14
|
-
runs-on: "ubuntu-latest"
|
|
15
|
-
strategy:
|
|
16
|
-
fail-fast: true
|
|
17
|
-
matrix:
|
|
18
|
-
ruby_version:
|
|
19
|
-
- 2.7
|
|
20
|
-
steps:
|
|
21
|
-
- name: Checkout Repository
|
|
22
|
-
uses: actions/checkout@v4
|
|
23
|
-
- name: "Set up Ruby ${{ matrix.ruby_version }}"
|
|
24
|
-
uses: ruby/setup-ruby@v1
|
|
25
|
-
with:
|
|
26
|
-
ruby-version: ${{ matrix.ruby_version }}
|
|
27
|
-
bundler-cache: true
|
|
28
|
-
- name: Build and Publish Gem
|
|
29
|
-
uses: ashmaroli/release-gem@dist
|
|
30
|
-
with:
|
|
31
|
-
gemspec_name: jekyll_test_plugin
|
|
32
|
-
env:
|
|
33
|
-
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_GEM_PUSH_API_KEY }}
|