From e349e4dbf2f3e42110f90977037baf2e6a5a3454 Mon Sep 17 00:00:00 2001 From: mihanhunter <93509289+mihanhunter@users.noreply.github.com> Date: Mon, 14 Mar 2022 05:59:27 -0400 Subject: [PATCH] Update publish.yml --- .github/workflows/publish.yml | 35 ++++++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index abed69c..193a7eb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,17 +1,30 @@ -name: Test and publish to DockerHub +name: ci + on: workflow_dispatch: # push: -# branches: [ master ] +# branches: +# - 'main' + jobs: -# test: -# [...] - build: + docker: runs-on: ubuntu-latest steps: - - uses: docker/build-push-action@v1 - with: - username: sleeplife - password: ${{ secrets.DOCKER_PASSWORD }} - repository: sleeplife/v2ray - tags: latest + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v2 + with: + push: true + tags: sleeplife/v2ray:latest