Skip to content

Commit

Permalink
added testnet pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lAmeR1 committed May 24, 2023
1 parent 98b1d95 commit 43ae3f5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/docker-image-testnet.yml
Original file line number Diff line number Diff line change
@@ -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}}

0 comments on commit 43ae3f5

Please sign in to comment.