initial commit

This commit is contained in:
yougg committed 2025-01-13 14:31:12 +08:00
commit c254cc1fdc
3 files changed
+38

No files matched your search

+21
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"
+16
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
View File
@@ -0,0 +1 @@
# Actions Demo