Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
silime committed Sep 9, 2024
1 parent 8b3c757 commit 146fa99
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-PKGBUILDs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,16 @@ jobs:
${{ env.BUILD_ALARM_SH }} 'gpg --armor --detach-sign --passphrase "${{ secrets.GPG_PASSPHRASE }}" --pinentry-mode loopback --output ~/testfile.sig ~/testfile.txt'
- name: Build packages
run:
${{ env.BUILD_ALARM_SH }} 'cd /build/ && ./build.sh qcom qcom "${{ secrets.GPG_PASSPHRASE }}"' ${{ env.BUILD_ALARM_SH }} 'ls /build/repo/qcom'
run: |
${{ env.BUILD_ALARM_SH }} 'cd /build/ && ./build.sh qcom qcom "${{ secrets.GPG_PASSPHRASE }}"'
${{ env.BUILD_ALARM_SH }} 'ls /build/repo/qcom'
${{ env.BUILD_ALARM_SH }} 'cd /build/ && ls ./ && tar -cvf logs.tar /build/logs'
- name: create artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE }}-logs
path: ./builder/build/logs.tar # or path/to/artifact
path: ./builder/build/build/logs/ # or path/to/artifact

- name: create release
uses: softprops/action-gh-release@v2
Expand All @@ -92,4 +94,4 @@ jobs:
# keep_latest: 1
# delete_tags: true
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 146fa99

Please sign in to comment.