Skip to content

Commit e4385da

Browse files
committed
Add nowrap class
1 parent b075354 commit e4385da

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

_data/fingerprints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ icons: 715715b9
33
maths: 5414f235
44
scripts: 5220ed99
55
search: b74b56ab
6-
style: 476521a8
6+
style: 1fcbb8ed

_includes/v.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{%- unless site.suppress_fingerprints -%}
22
?v=
33

4-
{%- assign fingerprints = 'icons: 715715b9,maths: 5414f235,scripts: 5220ed99,search: b74b56ab,style: 476521a8' | split: ',' -%}
4+
{%- assign fingerprints = 'icons: 715715b9,maths: 5414f235,scripts: 5220ed99,search: b74b56ab,style: 1fcbb8ed' | split: ',' -%}
55
{%- assign found = false -%}
66

77
{%- unless jekyll.environment == 'development' -%}

_posts/2024-04-09-deep-links-to-github-actions-job-logs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >
66
date: 2024-04-09 18:37 +0100
77
categories:
88
- Computing
9-
last_modified_at: 2025-09-19 11:31 +00:00
9+
last_modified_at: 2026-03-16 13:22 +0000
1010
---
1111

1212
In GitHub Actions, you can rather easily create a link to the current workflow run:
@@ -18,7 +18,7 @@ ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id
1818
{% endraw %}
1919

2020
However, it's not as easy to link to a specific job within that workflow run.
21-
The variable {% raw %}`${{` `github.job` `}}`{% endraw %} says it contains a job ID,
21+
The variable {% raw %}`${{ github.job }}`{:.nw}{% endraw %} says it contains a job ID,
2222
but in this case it means the key from your workflow:
2323

2424
{% raw %}

_sass/_custom.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
font-size: 70%;
2020
}
2121

22+
.nw {
23+
white-space: nowrap;
24+
}
25+
2226
abbr {
2327
cursor: help;
2428
}

0 commit comments

Comments
 (0)