From 989b46c39c9eed610363921c5a27bbc9d9d51846 Mon Sep 17 00:00:00 2001 From: yp05327 Date: Tue, 14 Jan 2025 08:47:18 +0000 Subject: [PATCH] Add .gitea/workflows/call.yaml --- .gitea/workflows/call.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/call.yaml diff --git a/.gitea/workflows/call.yaml b/.gitea/workflows/call.yaml new file mode 100644 index 0000000..503b9c8 --- /dev/null +++ b/.gitea/workflows/call.yaml @@ -0,0 +1,21 @@ +name: call workflow + +on: + push: + tags: + - '*' + +jobs: + call-release: + uses: ./.gitea/workflows/release.yaml + + after-workflow: + runs-on: ubuntu-latest + needs: + - call-release + steps: + - name: call workflow + - name: run shell + run: |- + set -x + echo "after call workflow" \ No newline at end of file