18 lines
537 B
YAML
18 lines
537 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
hello_world_job:
|
|
runs-on: ubuntu-latest
|
|
name: A job to say hello
|
|
steps:
|
|
- name: What the fuck
|
|
uses: actions/checkout@v2
|
|
- name: check zernitdir
|
|
run: ls -la /home/runner/work/Zernit/Zernit/
|
|
- name: Hello world action step
|
|
uses: ${{ github.workspace }}/.github/custom-actions/sourcehut-layer
|
|
id: hello
|
|
with:
|
|
who-to-greet: 'Mona the Octocat'
|
|
- name: Get the output time
|
|
run: echo "The time was ${{ steps.hello.outputs.time }}" |