Updated to version 23.0.170. Removed entrypoint. #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Docker build branch | |
run: make docker | |
if: ${{ github.ref_type == 'branch' && github.ref_name != 'main' }} | |
- name: Docker build main | |
run: make docker_main | |
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }} | |
- name: Docker build tag | |
run: make docker_tag TAG="${{github.ref_name}}" | |
if: ${{ github.ref_type == 'tag' }} |