1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-07-11 21:07:40 +02:00

Update naming to reflect clarity in arch, OS + purpose

This commit is contained in:
billz 2025-02-08 10:52:26 -08:00
parent cc9720e8ef
commit 33f66fdae5

View File

@ -47,7 +47,7 @@ jobs:
id: build id: build
uses: usimd/pi-gen-action@v1 uses: usimd/pi-gen-action@v1
with: with:
image-name: "raspap-${{ github.ref_name }}-${{ matrix.arch }}" image-name: "raspap-bookworm-${{ matrix.arch == '32-bit' && 'armhf' || 'arm64' }}-lite-${{ github.event.inputs.tag || github.ref_name }}"
enable-ssh: 1 enable-ssh: 1
stage-list: stage0 stage1 stage2 ./stage-raspap stage-list: stage0 stage1 stage2 ./stage-raspap
verbose-output: true verbose-output: true
@ -57,8 +57,8 @@ jobs:
- name: Upload Artifact - name: Upload Artifact
uses: svenstaro/upload-release-action@v2 uses: svenstaro/upload-release-action@v2
with: with:
asset_name: raspap-image-${{ github.ref_name }}-${{ matrix.arch }}.zip asset_name: "raspap-bookworm-${{ matrix.arch == '32-bit' && 'armhf' || 'arm64' }}-lite-${{ github.event.inputs.tag || github.ref_name }}.img.zip"
file: ${{ steps.build.outputs.image-path }} file: ${{ steps.build.outputs.image-path }}
repo_token: ${{ secrets.GITHUB_TOKEN }} repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }} tag: ${{ github.event.inputs.tag || github.ref }}
overwrite: true overwrite: true