Skip to content

feat: 🎸 尝试修复启动报错 #15

feat: 🎸 尝试修复启动报错

feat: 🎸 尝试修复启动报错 #15

Workflow file for this run

name: Release and Push Docker Hub
on:
push:
branches:
- windows
jobs:
build:
if: contains(github.event.head_commit.message, '[skip ci]') == false
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: dannicool
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and Push Docker Image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: dannicool/docker-wechatbot-webhook:windows
platforms: linux/amd64