Skip to content

Merge pull request #556 from alephium/user-conf #366

Merge pull request #556 from alephium/user-conf

Merge pull request #556 from alephium/user-conf #366

Workflow file for this run

name: Publish Docker image
on:
push:
branches: [ master ]
tags: [ "v[0-9]+.[0-9]+.[0-9]+*" ]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
cache: sbt
- run: sbt app/docker
shell: bash