Skip to content

Commit

Permalink
move binary to bin
Browse files Browse the repository at this point in the history
  • Loading branch information
t-aleksander committed Jun 21, 2024
1 parent 4ef38ff commit 13f2b99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
if: matrix.build == 'linux'
uses: bpicode/github-action-fpm@master
with:
fpm_args: "defguard-proxy-${{ github.ref_name }}-${{ matrix.target }}=/usr/sbin/defguard-proxy defguard-proxy.service=/usr/lib/systemd/system/defguard-proxy.service example-config.toml=/etc/defguard/proxy.toml"
fpm_args: "defguard-proxy-${{ github.ref_name }}-${{ matrix.target }}=/usr/bin/defguard-proxy defguard-proxy.service=/usr/lib/systemd/system/defguard-proxy.service example-config.toml=/etc/defguard/proxy.toml"
fpm_opts: "--debug --output-type deb --version ${{ env.VERSION }} --package defguard-proxy-${{ env.VERSION }}-${{ matrix.target }}.deb"

- name: Upload DEB
Expand All @@ -184,7 +184,7 @@ jobs:
if: matrix.build == 'linux'
uses: bpicode/github-action-fpm@master
with:
fpm_args: "defguard-proxy-${{ github.ref_name }}-${{ matrix.target }}=/usr/sbin/defguard-proxy defguard-proxy.service=/usr/lib/systemd/system/defguard-proxy.service example-config.toml=/etc/defguard/proxy.toml"
fpm_args: "defguard-proxy-${{ github.ref_name }}-${{ matrix.target }}=/usr/bin/defguard-proxy defguard-proxy.service=/usr/lib/systemd/system/defguard-proxy.service example-config.toml=/etc/defguard/proxy.toml"
fpm_opts: "--debug --output-type rpm --version ${{ env.VERSION }} --package defguard-proxy-${{ env.VERSION }}-${{ matrix.target }}.rpm"

- name: Upload RPM
Expand Down
2 changes: 1 addition & 1 deletion defguard-proxy.service
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ After=network-online.target
DynamicUser=yes
User=defguard
ExecReload=/bin/kill -HUP $MAINPID
ExecStart=/usr/sbin/defguard-proxy --config /etc/defguard/proxy.toml
ExecStart=/usr/bin/defguard-proxy --config /etc/defguard/proxy.toml
KillMode=process
KillSignal=SIGINT
LimitNOFILE=65536
Expand Down

0 comments on commit 13f2b99

Please sign in to comment.