Skip to content

Commit

Permalink
Change architecture from armv6l to armhf
Browse files Browse the repository at this point in the history
  • Loading branch information
cha-king committed Jan 3, 2022
1 parent 3d53d5d commit fc32e8a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@ jobs:

- name: Package code
run: |
mkdir light-controller_${{ github.ref_name }}_armv6l
mkdir -p light-controller_${{ github.ref_name }}_armv6l/usr/local/bin
mkdir -p light-controller_${{ github.ref_name }}_armv6l/etc/systemd/system
cp light-controller light-controller_${{ github.ref_name }}_armv6l/usr/local/bin/
cp light-controller.service light-controller_${{ github.ref_name }}_armv6l/etc/systemd/system/
mkdir light-controller_${{ github.ref_name }}_armhf
mkdir -p light-controller_${{ github.ref_name }}_armhf/usr/local/bin
mkdir -p light-controller_${{ github.ref_name }}_armhf/etc/systemd/system
cp light-controller light-controller_${{ github.ref_name }}_armhf/usr/local/bin/
cp light-controller.service light-controller_${{ github.ref_name }}_armhf/etc/systemd/system/
- name: Package deb
id: package-deb
uses: cha-king/[email protected]
with:
package: light-controller
package_root: light-controller_${{ github.ref_name }}_armv6l
package_root: light-controller_${{ github.ref_name }}_armhf
maintainer: Charlie King
version: ${{ github.ref_name }}
arch: armv6l
arch: armhf
desc: Simple MQTT light controller

- name: Upload deb package
Expand Down

0 comments on commit fc32e8a

Please sign in to comment.