doc: Add comments for command (#12) #4
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: csyncd-image | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-csyncd-image: | |
runs-on: ubuntu-latest | |
environment: release | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3 | sed -e "s/^v//") | |
- name: Build the image | |
run: docker build -f csyncd/Dockerfile -t fioncat/csyncd:${{ steps.get_version.outputs.VERSION }} . | |
- name: Push the image | |
run: docker push fioncat/csyncd:${{ steps.get_version.outputs.VERSION }} | |
- name: Tag latest image | |
run: docker tag fioncat/csyncd:${{ steps.get_version.outputs.VERSION }} fioncat/csyncd:latest | |
- name: Push latest image | |
run: docker push fioncat/csyncd:latest |