Skip to content

Commit

Permalink
Debugging workflow bug
Browse files Browse the repository at this point in the history
  • Loading branch information
swrh committed Sep 19, 2024
1 parent eacda3a commit 70a1cd2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Build Release
on:
push:
tags:
- 'r[0-9]'
- 'r[0-9]+'

jobs:
build:
Expand Down Expand Up @@ -34,6 +34,10 @@ jobs:

- name: Determine the name of the RPM package file
run: |
ls -la .
ls -la RPMS
ls -la ${{ matrix.arch }}
ls -la RPMS/${{ matrix.arch }}/confd-*.${GIT_DATE}git${GIT_HASH}.${{ matrix.arch }}.rpm
RPM_PATH=RPMS/${{ matrix.arch }}/confd-*.${GIT_DATE}git${GIT_HASH}.${{ matrix.arch }}.rpm
RPM_NAME=${RPM_PATH##*/}
tee -a $GITHUB_ENV <<<RPM_PATH=$RPM_PATH
Expand Down

0 comments on commit 70a1cd2

Please sign in to comment.