File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -280,16 +280,23 @@ jobs:
280280 git tag -f ci-latest HEAD && git push -f origin tag ci-latest
281281 TAG_NAME="ci-latest" ./.github/workflows/scripts/upload-packages.sh
282282
283+ - name : Print github ref
284+ env :
285+ REF : ${{ github.ref }}
286+ run : echo "$REF"
287+
283288 - name : Publish RPM packages to GitHub releases (stable)
284289 if : github.ref == 'refs/heads/ci-release'
285290 env :
286291 GH_TOKEN : ${{ github.token }}
287292 IMAGE_NAME : ${{ matrix.image }}
288293 run : |
289294 pwd
295+ ls -la
290296 latest_tag="$(git describe --exact-match --tags)"
291297 if ! gh release view "$latest_tag"; then
292298 echo "could not find release for tag $latest_tag"
293299 exit 1
294300 fi
301+ git checkout ci-release
295302 TAG_NAME="$latest_tag" ./.github/workflows/scripts/upload-packages.sh
You can’t perform that action at this time.
0 commit comments