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 17, 2024
1 parent e53ca36 commit a0e6350
Show file tree
Hide file tree
Showing 3 changed files with 40 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.

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

on:
push:
branches:
- main
workflow_dispatch:
inputs:
version:
description: "Massa node release version"
required: true

jobs:

build:
runs-on: ubuntu-latest

env:
VERSION: ${{ github.ref_name }}

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: ${{ github.repository }}:"${{ inputs.version }}", "${{ github.repository }}":dev

0 comments on commit a0e6350

Please sign in to comment.