Skip to content

build(Dockerfile): 更新 Dockerfile 以确保可执行权限和正确启动 #208

build(Dockerfile): 更新 Dockerfile 以确保可执行权限和正确启动

build(Dockerfile): 更新 Dockerfile 以确保可执行权限和正确启动 #208

Workflow file for this run

name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23
- name: Mod
run: go mod tidy
- name: Build
run: GOOS=linux GOARCH=amd64 go build -o tieba-sign
- name: View
run: pwd
- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ secrets.DOCKER_USERNAME }}/tieba_sign:latest
- name: Build and push Docker image
run: |
docker build -t ${{ secrets.DOCKER_USERNAME }}/tieba_sign:latest .
docker push ${{ secrets.DOCKER_USERNAME }}/tieba_sign:latest