Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaney committed Apr 11, 2024
1 parent 275aed7 commit fec0cee
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-amd64-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
options: --platform linux/amd64
timeout-minutes: 30

steps:
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Build
run: make module
run: make module.tar.gz

- name: Upload
uses: viamrobotics/upload-module@v1
with:
- name: Upload
uses: viamrobotics/upload-module@v1
with:
platform: linux/amd64
version: ${{ github.event_name == 'release' && github.ref_name || format('0.0.0-{0}.{1}', github.ref_name, github.run_number) }}
key-id: ${{ secrets.viam_key_id }}
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/build-arm64-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
timeout-minutes: 30

steps:
- name: Check out code
uses: actions/checkout@v3
- name: Check out code
uses: actions/checkout@v3

- name: Build
run: make module
- name: Build
run: make module.tar.gz

- name: Upload
uses: viamrobotics/upload-module@v1
with:
platform: linux/arm64
version: ${{ github.event_name == 'release' && github.ref_name || format('0.0.0-{0}.{1}', github.ref_name, github.run_number) }}
key-id: ${{ secrets.viam_key_id }}
key-value: ${{ secrets.viam_key_value }}
- name: Upload
uses: viamrobotics/upload-module@v1
with:
platform: linux/arm64
version: ${{ github.event_name == 'release' && github.ref_name || format('0.0.0-{0}.{1}', github.ref_name, github.run_number) }}
key-id: ${{ secrets.viam_key_id }}
key-value: ${{ secrets.viam_key_value }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ocean-prefilter-appimage: ocean-prefilter
cp ./packaging/appimages/deploy/ocean-prefilter-${TAG_VERSION}-${ARCH_NAME}.AppImage ocean-prefilter-appimage
chmod a+x ocean-prefilter-appimage

module: ocean-prefilter-appimage
module.tar.gz: ocean-prefilter-appimage
tar czf module.tar.gz ocean-prefilter-appimage

clean:
Expand Down

0 comments on commit fec0cee

Please sign in to comment.