Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

fix: error in the operations of dead, and false optional #3

fix: error in the operations of dead, and false optional

fix: error in the operations of dead, and false optional #3

Workflow file for this run

name: Docker Image CI
on:
push:
tags:
- v[0-9]+.[0-9]+.*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag flamapy/flamapy-fm-dist:${GITHUB_REF/refs\/tags\//}
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_API_TOKEN }}
- name: Push the Docker image
run: docker push flamapy/flamapy-fm-dist:${GITHUB_REF/refs\/tags\//}