Skip to content

ㅅㄷㄴㅅ

ㅅㄷㄴㅅ #35

Workflow file for this run

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 Docker image
run: |
go build -o 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