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
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: 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\//} |