From 933f6ecc10eb3d7437a7062dfb040af405dd1f6f Mon Sep 17 00:00:00 2001 From: lubiana Date: Sat, 14 Dec 2024 18:53:31 +0100 Subject: [PATCH] test --- .forgejo/workflows/demo.yml | 2 +- actions/sleep-one/entrypoint.sh | 6 ------ actions/{sleep-one => sleep-two}/Dockerfile | 0 actions/{sleep-one => sleep-two}/README.md | 0 actions/{sleep-one => sleep-two}/action.yml | 0 actions/sleep-two/entrypoint.sh | 13 +++++++++++++ 6 files changed, 14 insertions(+), 7 deletions(-) delete mode 100644 actions/sleep-one/entrypoint.sh rename actions/{sleep-one => sleep-two}/Dockerfile (100%) rename actions/{sleep-one => sleep-two}/README.md (100%) rename actions/{sleep-one => sleep-two}/action.yml (100%) create mode 100644 actions/sleep-two/entrypoint.sh 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