We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 770410c commit 87ba64dCopy full SHA for 87ba64d
1 file changed
.github/workflows/build.yaml
@@ -15,6 +15,27 @@ on:
15
16
jobs:
17
18
+ version-test:
19
+ name: testing versino action
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - name: checkout
23
+ uses: actions/checkout@v6
24
+
25
+ - name: get version
26
+ id: get-version
27
+ uses: ./.github/actions/check-version
28
+ with:
29
+ version-file: 'gradle/libs.versions.toml'
30
+ version-path: 'versions.processor'
31
32
+ - name: echo
33
+ shell: bash
34
+ run: echo BUILD_VERSION_X "$BUILD_VERSION_X"
35
+ env:
36
+ BUILD_VERSION_X: ${{ steps.get-version.outputs.build-version }}
37
38
39
version:
40
name: check version
41
runs-on: ubuntu-latest
0 commit comments