Skip to content

refine http log

refine http log #55

name: Publish Stable web Docker Image
on:
push:
tags:
- "v*"
jobs:
push_to_registry:
name: Push Docker image
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels)
id: meta
uses: docker/metadata-action@v3
with:
images: minghsu0107/random-chat-web
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
build-args: VERSION=${{ github.ref_name }}
file: ./build/Dockerfile.web
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}