Skip to content

Commit 5c7b24d

Browse files
author
Simen Andrè Vikestrand Skogum
committed
feat: update create-release-pr workflow to ensure jq installation and improve initial comments
1 parent 1b8d86c commit 5c7b24d

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/create-release-pr.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
```
2+
3+
Your file should start like this:
4+
5+
```yaml
6+
17
name: Create Release PR (select images)
28

39
on:
@@ -21,12 +27,14 @@ jobs:
2127
ref: dev
2228
fetch-depth: 0
2329

30+
- name: Ensure jq
31+
run: sudo apt-get update && sudo apt-get install -y jq
32+
2433
- name: Build release plan
2534
id: plan
2635
shell: bash
2736
run: |
2837
set -euo pipefail
29-
sudo apt-get update >/dev/null && sudo apt-get install -y jq >/dev/null
3038
IFS=, read -r -a ARR <<<"${{ github.event.inputs.dirs }}"
3139
includes="[]"
3240
for d in "${ARR[@]}"; do

0 commit comments

Comments
 (0)