ci: factor out "Pipeline info" step into separate job for nicer org.
This commit is contained in:
parent
3ea764708a
commit
f9f3a82f23
1 changed files with 7 additions and 2 deletions
|
@ -10,15 +10,20 @@ env:
|
||||||
TZ: Europe/Berlin
|
TZ: Europe/Berlin
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
pipeline-info:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: hugomods/hugo:exts-0.148.1
|
image: code.forgejo.org/oci/node:22-bookworm
|
||||||
steps:
|
steps:
|
||||||
- name: Pipeline info
|
- name: Pipeline info
|
||||||
run: |
|
run: |
|
||||||
echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}"
|
echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}"
|
||||||
|
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: hugomods/hugo:exts-0.148.1
|
||||||
|
steps:
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: |
|
run: |
|
||||||
apk update
|
apk update
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue