Skip to content

Commit 0510c5d

Browse files
committed
support 2.x branch
1 parent ccbcd1c commit 0510c5d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/build-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
test:
7-
if: github.ref != 'refs/heads/main'
7+
if: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/2.x' }}
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:

.github/workflows/release-gem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push]
44

55
jobs:
66
release:
7-
if: github.ref == 'refs/heads/main'
7+
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/2.x' }}
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v1

jekyll-dash.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ Gem::Specification.new do |spec|
1919

2020
spec.add_development_dependency "bundler", "~> 2.2.28"
2121
spec.add_development_dependency "rake", "~> 13.0.6"
22-
spec.add_development_dependency "rake-release", "~> 1.3.0"
2322
end

0 commit comments

Comments
 (0)