Skip to content

Commit

Permalink
chore(workflow): change CI artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
EmixamPP committed Jul 23, 2023
1 parent 326bf7e commit edc7cc9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:
meson compile -C build
DESTDIR=install_dir meson install -C build
tar -czvf /artifacts/linux-enable-ir-emitter_aarch64.tar.gz -C build/install_dir .
tar -czvf /artifacts/linux-enable-ir-emitter.aarch64.tar.gz -C build/install_dir .
- name: Upload tarball
uses: actions/upload-artifact@v3
with:
name: linux-enable-ir-emitter_aarch64.tar.gz
path: artifacts/linux-enable-ir-emitter_aarch64.tar.gz
name: linux-enable-ir-emitter.aarch64.tar.gz
path: artifacts/linux-enable-ir-emitter.aarch64.tar.gz
if-no-files-found: error
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ jobs:
- name: Create tarball
run: |
DESTDIR=install_dir meson install -C build
tar -czvf build/linux-enable-ir-emitter_x86-64.tar.gz -C build/install_dir .
tar -czvf build/linux-enable-ir-emitter.x86-64.tar.gz -C build/install_dir .
- name: Upload tarball
uses: actions/upload-artifact@v3
with:
name: linux-enable-ir-emitter_x86-64.tar.gz
path: build/linux-enable-ir-emitter_x86-64.tar.gz
name: linux-enable-ir-emitter.x86-64.tar.gz
path: build/linux-enable-ir-emitter.x86-64.tar.gz
if-no-files-found: error
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This tool was created to use [Howdy](https://github.com/boltgolt/howdy), a Windo
## Installation
Directly refer to the manual buid [section](#manual-build) if your boot service manager is not Systemd but OpenRC. Stay here if you don't know. We support ARM architectures, just download the `aarch64` variant.

Download the latest `linux-enable-ir-emitter-x.x.x_x86-64.tar.gz` [here](https://github.com/EmixamPP/linux-enable-ir-emitter/releases/latest), then execute:
Download the latest `linux-enable-ir-emitter-x.x.x.x86-64.tar.gz` [here](https://github.com/EmixamPP/linux-enable-ir-emitter/releases/latest), then execute:
```
sudo tar -C / --no-same-owner -h -xzf linux-enable-ir-emitter-*.tar.gz
```
Expand Down

0 comments on commit edc7cc9

Please sign in to comment.