We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d90ccf4 commit 69d58f4Copy full SHA for 69d58f4
.github/workflows/release.yml
@@ -31,16 +31,11 @@ jobs:
31
verbose-output: true
32
pi-gen-version: ${{ matrix.pi_gen_version }}
33
34
- - name: Unzip and Rename Image File
35
- run: |
36
- unzip ${{ steps.build.outputs.image-path }} -d extracted_image
37
- mv "$(find extracted_image -name "*.img")" "raspap-image-${{ github.ref_name }}-${{ matrix.arch }}.img"
38
-
39
- name: Upload Artifact
40
uses: svenstaro/upload-release-action@v2
41
with:
42
- file: raspap-image-${{ github.ref_name }}-${{ matrix.arch }}.img
+ asset_name: raspap-image-${{ github.ref_name }}-${{ matrix.arch }}.zip
+ file: ${{ steps.build.outputs.image-path }}
43
repo_token: ${{ secrets.GITHUB_TOKEN }}
44
tag: ${{ github.ref }}
45
overwrite: true
46
- file_glob: true
0 commit comments