We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4942d0 commit 455bb42Copy full SHA for 455bb42
1 file changed
.github/workflows/build.yml
@@ -79,8 +79,9 @@ jobs:
79
id: create-build-number
80
run: |
81
git fetch --unshallow --filter=tree:0
82
- echo $(git rev-list --count origin/${{ github.ref_name }} ^origin/main)
83
- echo "build-number=$(git rev-list --count origin/${{ github.ref_name }} ^origin/main)" >> GITHUB_OUTPUT
+ $build_number=echo $(git rev-list --count origin/${{ github.ref_name }} ^origin/main)
+ echo $build_number
84
+ echo "build-number=$build_number ^origin/main)" >> GITHUB_OUTPUT
85
- name: ''
86
shell: bash
87
0 commit comments