Skip to content

Commit

Permalink
Update v0.37.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stilleshan committed Aug 4, 2021
1 parent d87b289 commit 86e48dd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: "build for docker"

# on: [push]
on:
workflow_dispatch:
push:
paths:
- 'Dockerfile'


jobs:
Expand Down Expand Up @@ -39,3 +40,10 @@ jobs:
--file ./Dockerfile . \
--tag $(echo "${DOCKER_USERNAME}" | tr '[:upper:]' '[:lower:]')/${{ github.event.repository.name }}:latest \
--tag $(echo "${DOCKER_USERNAME}" | tr '[:upper:]' '[:lower:]')/${{ github.event.repository.name }}:${TAG}
- name: Sync README.md
uses: ms-jpq/sync-dockerhub-readme@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}
readme: "README.md"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.8
MAINTAINER Stille <[email protected]>

ENV FRP_VERSION 0.37.0
ENV FRP_VERSION 0.37.1
WORKDIR /

RUN set -xe && \
Expand Down
2 changes: 1 addition & 1 deletion frps_linux_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Font="\033[0m"
# fonts color

# variable
FRP_VERSION=0.37.0
FRP_VERSION=0.37.1
REPO=stilleshan/frps
WORK_PATH=$(dirname $(readlink -f $0))
FRP_NAME=frps
Expand Down
2 changes: 1 addition & 1 deletion frps_linux_uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Font="\033[0m"
# variable
WORK_PATH=$(dirname $(readlink -f $0))
FRP_NAME=frps
FRP_VERSION=0.37.0
FRP_VERSION=0.37.1
FRP_PATH=/usr/local/frp

# 停止frpc
Expand Down

0 comments on commit 86e48dd

Please sign in to comment.