Skip to content

Dockyman build/push base image(s) #15

Dockyman build/push base image(s)

Dockyman build/push base image(s) #15

Workflow file for this run

name: Docker Release
on:
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
run: |
make -C .dockyman release VERSION=${{ github.event.release.tag_name }}
make -C .dockyman build
make -C .dockyman push