[Bugfix] Fixed incorrect reference in git checkout

This commit is contained in:
Allan Jeremy 2022-05-18 13:17:08 +03:00
parent 96adcac92b
commit c7170d9096

View file

@ -44,7 +44,7 @@ jobs:
- uses: actions/checkout@v2
- run: |
git checkout ${{ GITHUB_SHA }}
git checkout ${{ github.sha }}
for historicTags in $(git rev-list --tags -n 9); do
git checkout $historicTags
echo "Checking out $historicTags"