From 0c25ef52d505a48dca2ec0aac0984ae9e5ab53e2 Mon Sep 17 00:00:00 2001 From: kiper220 Date: Fri, 7 Feb 2025 17:53:28 +0000 Subject: [PATCH] feat: add demo action workflow --- .forgejo/workflows/demo.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .forgejo/workflows/demo.yaml diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml new file mode 100644 index 0000000..53a986f --- /dev/null +++ b/.forgejo/workflows/demo.yaml @@ -0,0 +1,8 @@ +on: [push] +jobs: + ls: + runs-on: docker + steps: + - uses: actions/checkout@v3 + - run: | + ls ${{ github.workspace }} \ No newline at end of file