alpha
Login
or
Join now
dunkirk.sh
/
inky
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
bug: fix github action
author
Kieran Klukas
date
1 year ago
(Apr 11, 2025, 11:19 PM -0400)
commit
6fa9e240
6fa9e24005157f15636f3b3d56f7ba056f0b84ad
parent
4d68487d
4d68487de506c0e4ef230e1bf3bac3d28bdf768b
+4
-20
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
image-generator.yaml
+4
-20
.github/workflows/image-generator.yaml
Reviewed
···
104
104
mv raspios.img.xz raspios-camera-ssh-usb.img.xz
105
105
106
106
- name: Upload image as artifact
107
107
-
uses: actions/upload-artifact@v3
107
107
+
uses: actions/upload-artifact@v4
108
108
with:
109
109
name: raspberry-pi-camera-image
110
110
path: raspios-camera-ssh-usb.img.xz
111
111
112
112
-
- name: Create Release
113
113
-
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
114
114
-
id: create_release
115
115
-
uses: actions/create-release@v1
116
116
-
env:
117
117
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
118
118
-
with:
119
119
-
tag_name: v${{ github.run_number }}
120
120
-
release_name: Raspberry Pi Camera Image v${{ github.run_number }}
121
121
-
draft: false
122
122
-
prerelease: false
123
123
-
124
112
- name: Upload Release Asset
125
125
-
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
126
126
-
uses: actions/upload-release-asset@v1
113
113
+
uses: softprops/action-gh-release@v1
114
114
+
with:
115
115
+
files: raspios-camera-ssh-usb.img.xz
127
116
env:
128
117
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
129
129
-
with:
130
130
-
upload_url: ${{ steps.create_release.outputs.upload_url }}
131
131
-
asset_path: ./raspios-camera-ssh-usb.img.xz
132
132
-
asset_name: raspios-camera-ssh-usb.img.xz
133
133
-
asset_content_type: application/octet-stream