Skip to content

Commit

Permalink
add publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjah committed Jan 18, 2024
1 parent e53ca36 commit 4d59467
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 63 deletions.
39 changes: 0 additions & 39 deletions .github/workflows/docker-image.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/dockerhub-description.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build and Publish Docker Image

on:
workflow_dispatch:
inputs:
version:
description: "Massa node release version"
required: true

jobs:

build:
runs-on: ubuntu-latest

steps:
- name: Checkout the source code
uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
build-args: VERSION=${{ inputs.version }}
platforms: linux/amd64, linux/arm64
push: true
tags: massa-core:${{ inputs.version }}, massa-core:latest

0 comments on commit 4d59467

Please sign in to comment.