feat: 添加源阅读tts #15
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: "docker build release" | |
on: | |
push: | |
branches: | |
- 'main' | |
# on: | |
# workflow_dispatch: | |
# inputs: | |
# project: | |
# description: 'Project:VERSION' | |
# required: true | |
# default: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set tag | |
id: tag | |
run: | | |
echo "tag=$(date +%Y)-$(date +%m)-$(date +%d)" >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push to docker hub | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
build-args: VERSION=${{ env.tag }} | |
tags: | | |
${{ secrets.DOCKER_USERNAME }}/tts-azure:latest | |
${{ secrets.DOCKER_USERNAME }}/tts-azure:${{ env.tag }} |