8000 feature: supports to show submodules as tree or list (#1307) · sourcegit-scm/sourcegit@ed1351b · GitHub
[go: up one dir, main page]

Skip to content

feature: supports to show submodules as tree or list (#1307) #2830

feature: supports to show submodules as tree or list (#1307)

feature: supports to show submodules as tree or list (#1307) #2830

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [develop]
pull_request:
branches: [develop]
workflow_dispatch:
workflow_call:
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
version:
name: Prepare version string
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Output version string
id: version
run: echo "version=$(cat VERSION)" >> "$GITHUB_OUTPUT"
package:
needs: [build, version]
name: Package
uses: ./.github/workflows/package.yml
with:
version: ${{ needs.version.outputs.version }}
0