ㅅㄷㄴㅅ #33
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: backend deploy | |
on: | |
push: | |
branches: [ "cicd-test" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.22.5 | |
- name: build go file | |
run: | | |
go build -v ./... | |
- name: Build Docker image | |
run: | | |
docker build --tag techbloghub . | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{secrets.DOCKER_HUB_USERNAME}} | |
password: ${{secrets.DOCKER_HUB_TOKEN}} | |
# Docker Build & Push | |
- name: Docker Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
platforms: linux/amd64 | |
push: true | |
tags: | | |
${{ secrets.DOCKER_HUB_USERNAME }}/server:${{github.run_number}} | |
${{ secrets.DOCKER_HUB_USERNAME }}/server:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |