2023-10-15 02:58:53 +00:00
|
|
|
name: Release and Build Docker Image
|
2023-10-14 11:50:32 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "*"
|
2023-10-15 02:58:53 +00:00
|
|
|
workflow_dispatch:
|
2023-10-14 11:50:32 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release-pypi:
|
|
|
|
name: Build and Release PyPI
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: "3.10"
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16
|
|
|
|
|
|
|
|
- name: Build artifacts
|
|
|
|
run: |
|
|
|
|
pip install build
|
|
|
|
python -m build
|
|
|
|
|
|
|
|
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
|
|
with:
|
|
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
|
|
|
|
|
|
- run: npx changelogithub
|
|
|
|
continue-on-error: true
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
2023-10-15 02:58:53 +00:00
|
|
|
|
|
|
|
build-image:
|
|
|
|
runs-on: ubuntu-latest
|
2023-10-15 03:15:02 +00:00
|
|
|
#needs: release-pypi
|
2023-10-15 02:58:53 +00:00
|
|
|
# run unless event type is pull_request
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
2024-01-27 14:44:23 +00:00
|
|
|
tags: ${{ secrets.DOCKERHUB_USERNAME }}/xiaomusic:${{ github.ref_name }}, ${{ secrets.DOCKERHUB_USERNAME }}/xiaomusic:latest, ${{ secrets.DOCKERHUB_USERNAME }}/xiaomusic:stable
|