diff --git a/.gitea/workflows/CI_master.yaml b/.gitea/workflows/CI_master.yaml index 5c5c49e4d..158c9a7a3 100644 --- a/.gitea/workflows/CI_master.yaml +++ b/.gitea/workflows/CI_master.yaml @@ -10,13 +10,16 @@ jobs: steps: - name: 测试release触发及一些参数 run: | - echo "event: ${{ github.event }}" + echo "event: author is ${{ github.event.author }}, isLatest is ${{ github.event.release.prerelease }}" echo "event_name: ${{ github.event_name }}" echo "ref: ${{ github.ref }}" - # - name: 检出代码 - # uses: https://gitea.joylink.club/actions/checkout@v4 - # with: - # submodules: recursive + - name: 检出代码 + uses: https://gitea.joylink.club/actions/checkout@v4 + with: + submodules: recursive + - name: 查看代码分支和版本 + run: | + git branch -vv # - name: 设置java环境 # uses: https://gitea.joylink.club/actions/setup-java@v4 # with: