Skip to content

Commit 8ad49db

Browse files
committed
🔖 jekyll-dash 1.4.0
1 parent 9ee2252 commit 8ad49db

File tree

8 files changed

+47
-47
lines changed

8 files changed

+47
-47
lines changed

.github/actions/gemspec-fetch/Dockerfile

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/actions/gemspec-fetch/action.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/actions/gemspec-fetch/entrypoint.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/build-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
ruby-version: ${{ matrix.ruby-version }}
2525
bundler-cache: true
2626
- name: 🧪 Run tests
27-
run: bundle exec rake
27+
run: bundle exec rake

.github/workflows/build-tag.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v2
1515
- name: 💎 Extract gemspec info
1616
id: gemspec_fetch
17-
uses: ./.github/actions/gemspec-fetch
17+
uses: bitbrain/gemspec-fetch@1.0.0
1818
with:
1919
specfile: jekyll-dash.gemspec
2020
- name: 🕵️‍♂️ investigate if tag exists
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GH_CREDENTIALS }}
2727
- name: 🔖Build tag
28-
if: ${{ steps.checkTag.outputs.exists == 'false' }}
28+
if: ${{ steps.tag-check.outputs.exists == 'false' }}
2929
id: tag_version
3030
uses: mathieudutour/[email protected]
3131
with:
@@ -34,7 +34,7 @@ jobs:
3434
custom_tag: ${{ steps.gemspec_fetch.outputs.version }}
3535
tag_prefix: v
3636
- name: 📙 Github release
37-
if: ${{ steps.checkTag.outputs.exists == 'false' }}
37+
if: ${{ steps.tag-check.outputs.exists == 'false' }}
3838
uses: ncipollo/release-action@v1
3939
with:
4040
tag: ${{ steps.tag_version.outputs.new_tag }}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ main, 1.x ]
6+
pull_request:
7+
# The branches below must be a subset of the branches above
8+
branches: [ main ]
9+
schedule:
10+
- cron: '38 7 * * 1'
11+
12+
jobs:
13+
analyze:
14+
name: Analyze
15+
runs-on: ubuntu-latest
16+
permissions:
17+
actions: read
18+
contents: read
19+
security-events: write
20+
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
language: [ 'javascript' ]
25+
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v2
29+
30+
# Initializes the CodeQL tools for scanning.
31+
- name: Initialize CodeQL
32+
uses: github/codeql-action/init@v1
33+
with:
34+
languages: ${{ matrix.language }}
35+
# If you wish to specify custom queries, you can do so here or in a config file.
36+
# By default, queries listed here will override any specified in a config file.
37+
# Prefix the list here with "+" to use these queries and those in the config file.
38+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
39+
40+
- name: Perform CodeQL Analysis
41+
uses: github/codeql-action/analyze@v1

.github/workflows/release-gem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
uses: dawidd6/action-publish-gem@v1
1616
with:
1717
github_token: ${{secrets.GH_CREDENTIALS}}
18-
api_key: ${{secrets.RUBYGEMS_API_KEY}}
18+
api_key: ${{secrets.RUBYGEMS_API_KEY}}

jekyll-dash.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "jekyll-dash"
5-
spec.version = "1.3.6"
5+
spec.version = "1.4.0"
66
spec.authors = ["Miguel Gonzalez Sanchez"]
77
spec.email = ["[email protected]"]
88

0 commit comments

Comments
 (0)