Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

Commit 759a1c1

Browse files
committed
Suffix image with _arm64_
1 parent c8870f6 commit 759a1c1

File tree

2 files changed

+11
-17
lines changed

2 files changed

+11
-17
lines changed

.github/workflows/build-docker.yml

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -41,28 +41,22 @@ jobs:
4141
uses: actions/upload-artifact@v2
4242
with:
4343
name: built-image
44-
path: ./deploy/image_*PhotonVision.img.xz
44+
path: ./deploy/image_*PhotonVision*.img.xz
4545
if-no-files-found: error
4646

4747
- name: Upload debug artifacts
4848
uses: actions/upload-artifact@v2
4949
with:
5050
name: debug-files
5151
path: |
52-
./deploy/*PhotonVision.info
52+
./deploy/*PhotonVision*.info
5353
./deploy/build.log
5454
if-no-files-found: error
55-
56-
release:
57-
if: startsWith(github.ref, 'refs/tags/')
58-
needs: [build]
59-
runs-on: ubuntu-20.04
60-
steps:
61-
- uses: actions/download-artifact@v2
62-
with:
63-
name: built-image
64-
- uses: softprops/action-gh-release@v1
65-
with:
66-
files: '**/*'
67-
env:
68-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55+
56+
- uses: softprops/action-gh-release@v1
57+
if: startsWith(github.ref, 'refs/tags/')
58+
with:
59+
files: ./deploy/image_*PhotonVision*.img.xz
60+
env:
61+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62+

config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
IMG_NAME='PhotonVision'
1+
IMG_NAME='PhotonVision_arm64'
22
TARGET_HOSTNAME=photonvision
33
ENABLE_SSH=1
44
PI_GEN=photon-pi-gen

0 commit comments

Comments
 (0)