21 lines
330 B
YAML
21 lines
330 B
YAML
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" |