From 3598b6ae483294d06b1ea7f15e6ff41f6dc4a835 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Mon, 16 Jun 2025 14:54:12 +0200 Subject: [PATCH] chore: test release actions --- .forgejo/workflows/release.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .forgejo/workflows/release.yaml diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml new file mode 100644 index 0000000..7b6531c --- /dev/null +++ b/.forgejo/workflows/release.yaml @@ -0,0 +1,11 @@ +on: [push] +jobs: + release: + runs-on: docker + steps: + - run: mkdir -p mypath + - run: echo "hello" > mypath/world.txt + - uses: actions/upload-artifact@v4 + with: + name: my-artifact + path: mypath/world.txt