Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
silime committed Sep 9, 2024
1 parent 2fa7af9 commit 13f6792
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-PKGBUILDs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ jobs:
- 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'
${{ env.BUILD_ALARM_SH }} 'tar -cvf /build/"${{ env.RELEASE }}"-logs.tar /build/build/logs'
${{ 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/${{ env.RELEASE }}-logs.tar # or path/to/artifact
path: ./builder/build/logs.tar # or path/to/artifact

- name: create release
uses: softprops/action-gh-release@v2
Expand Down
21 changes: 14 additions & 7 deletions .github/workflows/build-arch-firmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,21 @@ jobs:
uses: actions/download-artifact@v4
with:
name: linux-firmware-aarch64-latest

- name: ls artifacts
run: |
ls ./
- name: Upload assets
uses: svenstaro/upload-release-action@v2
- name: create release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo_token: ${{ secrets.BUILD_TOKEN }}
file: ./*-latest/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true
body: ${{ github.ref }}
tag_name: ${{ github.ref }}
draft: false
prerelease: false
files: |
./*-latest/*

0 comments on commit 13f6792

Please sign in to comment.