We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06bd15a commit 45fb616Copy full SHA for 45fb616
.github/workflows/packages.yml
@@ -280,13 +280,19 @@ jobs:
280
git tag -f ci-latest HEAD && git push -f origin tag ci-latest
281
TAG_NAME="ci-latest" ./.github/workflows/scripts/upload-packages.sh
282
283
+ - name: Print github ref
284
+ env:
285
+ REF: ${{ github.ref }}
286
+ run: echo "$REF"
287
+
288
- name: Publish RPM packages to GitHub releases (stable)
289
if: github.ref == 'refs/heads/ci-release'
290
env:
291
GH_TOKEN: ${{ github.token }}
292
IMAGE_NAME: ${{ matrix.image }}
293
run: |
294
pwd
295
+ ls -la
296
latest_tag="$(git describe --exact-match --tags)"
297
if ! gh release view "$latest_tag"; then
298
echo "could not find release for tag $latest_tag"
0 commit comments