initial commit

This commit is contained in:
2025-01-13 14:31:12 +08:00
commit c254cc1fdc
3 changed files with 38 additions and 0 deletions

View File

@ -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"

View File

@ -0,0 +1,16 @@
name: try release
on:
push:
tags:
- 'v*'
workflow_call:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: run shell
run: |-
set -x
echo release

1
README.md Normal file
View File

@ -0,0 +1 @@
# Actions Demo