From 43ae3f5a05bc05639e2f0cb99b237e176fb3e2ff Mon Sep 17 00:00:00 2001 From: lAmeR <42315864+lAmeR1@users.noreply.github.com> Date: Wed, 24 May 2023 23:00:05 +0200 Subject: [PATCH] added testnet pipeline --- .github/workflows/docker-image-testnet.yml | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/docker-image-testnet.yml diff --git a/.github/workflows/docker-image-testnet.yml b/.github/workflows/docker-image-testnet.yml new file mode 100644 index 0000000..f1ec73c --- /dev/null +++ b/.github/workflows/docker-image-testnet.yml @@ -0,0 +1,30 @@ +name: Docker Image TESTNET + +on: + workflow_dispatch + +jobs: + + build: + + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v3 + - + name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: lamer1 + password: ${{ secrets.DOCKER_ACCESS_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + push: true + tags: lamer1/kaspa-socket-server:testnet + file: ./docker/Dockerfile + build-args: | + version=${{github.ref_name}}