We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 111d3d6 commit 1d07d6cCopy full SHA for 1d07d6c
.github/workflows/aggregate_tested_versions.yml
@@ -29,10 +29,10 @@ jobs:
29
30
- name: Run aggregation script
31
env:
32
- CI_COMMIT_SHA: ${{ github.sha }}
33
- CI_COMMIT_BRANCH: ${{ github.ref }}
34
CIRCLECI_TOKEN: ${{ secrets.CIRCLECI_TOKEN }}
35
run: |
+ export CI_COMMIT_SHA=$(git rev-parse HEAD)
+ export CI_COMMIT_BRANCH=$(git branch --contains "${CI_COMMIT_SHA}" | grep -v 'detached' | head -n 1 | awk '{print $2}')
36
./.github/scripts/aggregate_tested_versions.sh
37
38
- name: Show aggregated versions
0 commit comments