build: docker image tag auto increment 설정 #3
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: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login Dockerhub | |
env: | |
DOCKER_HUB_REPO: ${{ secrets.DOCKER_HUB_REPO }} | |
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} | |
run: echo "$DOCKER_HUB_TOKEN" | docker login --username $DOCKER_HUB_REPO --password-stdin | |
- name: auto increment tag | |
id: tag | |
uses: sophiware/actions-auto-increment-tag@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag $DOCKER_HUB_REPO/add-be:${{ steps.tag.outputs.tag }} | |
- name: push to docker hub repository | |
run: docker push $DOCKER_HUB_REPO/add-be:${{ steps.tag.outputs.tag }} |