diff --git a/.forgejo/workflows/demo.yml b/.forgejo/workflows/demo.yml index e3858c5..33c1448 100644 --- a/.forgejo/workflows/demo.yml +++ b/.forgejo/workflows/demo.yml @@ -6,4 +6,4 @@ jobs: steps: - uses: actions/checkout@v4 - name: sleep - uses: ./actions/sleep-one + uses: ./actions/sleep-two diff --git a/actions/sleep-one/entrypoint.sh b/actions/sleep-one/entrypoint.sh deleted file mode 100644 index 3e53b47..0000000 --- a/actions/sleep-one/entrypoint.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -echo 'hello' - -sleep 3 -exit 0 diff --git a/actions/sleep-one/Dockerfile b/actions/sleep-two/Dockerfile similarity index 100% rename from actions/sleep-one/Dockerfile rename to actions/sleep-two/Dockerfile diff --git a/actions/sleep-one/README.md b/actions/sleep-two/README.md similarity index 100% rename from actions/sleep-one/README.md rename to actions/sleep-two/README.md diff --git a/actions/sleep-one/action.yml b/actions/sleep-two/action.yml similarity index 100% rename from actions/sleep-one/action.yml rename to actions/sleep-two/action.yml diff --git a/actions/sleep-two/entrypoint.sh b/actions/sleep-two/entrypoint.sh new file mode 100644 index 0000000..0d782af --- /dev/null +++ b/actions/sleep-two/entrypoint.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +apk add --no-cache \ + brotli \ + gzip \ + hugo + +echo 'hello' + +hugo + +sleep 3 +exit 0