this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

bug: fix github action

+4 -20
+4 -20
.github/workflows/image-generator.yaml
··· 104 104 mv raspios.img.xz raspios-camera-ssh-usb.img.xz 105 105 106 106 - name: Upload image as artifact 107 - uses: actions/upload-artifact@v3 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 - - name: Create Release 113 - if: github.event_name == 'push' && github.ref == 'refs/heads/main' 114 - id: create_release 115 - uses: actions/create-release@v1 116 - env: 117 - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 118 - with: 119 - tag_name: v${{ github.run_number }} 120 - release_name: Raspberry Pi Camera Image v${{ github.run_number }} 121 - draft: false 122 - prerelease: false 123 - 124 112 - name: Upload Release Asset 125 - if: github.event_name == 'push' && github.ref == 'refs/heads/main' 126 - uses: actions/upload-release-asset@v1 113 + uses: softprops/action-gh-release@v1 114 + with: 115 + files: raspios-camera-ssh-usb.img.xz 127 116 env: 128 117 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 129 - with: 130 - upload_url: ${{ steps.create_release.outputs.upload_url }} 131 - asset_path: ./raspios-camera-ssh-usb.img.xz 132 - asset_name: raspios-camera-ssh-usb.img.xz 133 - asset_content_type: application/octet-stream