Skip to content

Commit

Permalink
build: little fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thefab committed Jul 10, 2020
1 parent 69e1048 commit e6141f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
# only for releases
- name: upload release asset
id: upload-release-asset
if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'release'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .metwork-framework/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ bash -c "$(curl -fsSLk https://raw.githubusercontent.com/metwork-framework/log_p
Notes:

- if you are very concerned about the security of your system and if you don't want to execute
a remote `root` script on your system, please review the [very small](https://raw.githubusercontent.com/metwork-framework/log_proxy/master/installer/install.sh)
install script (it's just about downloading and installing two statically compiled binaries in `/usr/local/bin/`)
- our binary distribution won't work on [Alpine Linux](https://alpinelinux.org/) because of `glibc` replacement but @tomalok is maintaining a [log_proxy Alpine Linux package](https://pkgs.alpinelinux.org/packages?name=log_proxy).
a remote `root` script on your system, please review the [very small install script](https://raw.githubusercontent.com/metwork-framework/log_proxy/master/installer/install.sh)
(it's just about downloading and installing two statically compiled binaries in `/usr/local/bin/`)
- our binary distribution won't work on [Alpine Linux](https://alpinelinux.org/) because of `glibc` replacement but [@tomalok](https://github.com/tomalok) is maintaining a [log_proxy Alpine Linux package](https://pkgs.alpinelinux.org/packages?name=log_proxy).

## How to uninstall?

Expand Down
2 changes: 1 addition & 1 deletion installer/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ zcat "${ORG}-${REPO}-${RELEASE}.tar.gz" |tar xf -
mkdir -p "${PREFIX}/bin"
for F in log_proxy log_proxy_wrapper; do
cp -f "log_proxy-linux64-${RELEASE}/${F}" "${PREFIX}/bin/"
chmod a+rx "${TARGET}/bin/${F}"
chmod a+rx "${PREFIX}/bin/${F}"
done
rm -f "log_proxy-linux64-${RELEASE}.tar.gz"
echo "Done"

0 comments on commit e6141f7

Please sign in to comment.