From 346f7c6e39108b86e5df5510f01af96bf6a02e8d Mon Sep 17 00:00:00 2001 From: mihanhunter <93509289+mihanhunter@users.noreply.github.com> Date: Mon, 14 Mar 2022 05:39:13 -0400 Subject: [PATCH] Create publish.yml --- .github/workflows/publish.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..eb89237 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,20 @@ +name: Test and publish to DockerHub +on: + workflow_dispatch: +# push: +# branches: [ master ] +jobs: + test: + [...] + + build: + needs: test + runs-on: ubuntu-latest + + steps: + - uses: docker/build-push-action@v1 + with: + username: sleeplife + password: ${{ secrets.DOCKER_PASSWORD }} + repository: sleeplife/v2ray + tags: latest