Skip to content

Commit

Permalink
ci(release): fix destination directory of builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Jul 12, 2024
1 parent 5e9c395 commit 22d4d59
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: actions/checkout@v4

- name: Download and Patch beta PKGBUILDs
if: matrix.repo == 'lizardbyte-beta'
if: matrix.release_name == 'beta'
run: |
# we don't want any stable packages to be built, so remove them
rm -rf pkgbuilds
Expand Down Expand Up @@ -163,6 +163,13 @@ jobs:
build-pacman-repo build
# ensure files are present in the repo
repo_files=$(ls repo)
if [[ -z "${repo_files}" ]]; then
echo "::error:: No files found in repo"
exit 1
fi
- name: Create/Update GitHub Release
if: github.event_name == 'schedule' || github.event_name == 'push'
uses: ncipollo/release-action@v1.14.0
Expand Down

0 comments on commit 22d4d59

Please sign in to comment.