Skip to content

修复web发送文件错误的提示(可能解决?) #134

修复web发送文件错误的提示(可能解决?)

修复web发送文件错误的提示(可能解决?) #134

name: Create tagged release
on:
push:
paths:
- 'VERSION'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set env
run: |
echo "RELEASE_VERSION=$(<VERSION)" >> $GITHUB_ENV
- name: Push a new tag
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git tag "${{ env.RELEASE_VERSION }}"
git push origin --tags
- uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Create release
run: npx changelogithub-chinese
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set env
run: echo "RELEASE_VERSION=$(<VERSION)" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{secrets.HUB_USERNAME}}
password: ${{secrets.HUB_PASSWORD}}
- name: Login to Alibaba Cloud Container Registry (ACR)
uses: docker/login-action@v3
with:
username: ${{secrets.CLOUD_USERNAME}}
password: ${{secrets.CLOUD_PASSWORD}}
registry: registry.cn-hangzhou.aliyuncs.com
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
silianz/python-openbmclapi:latest
silianz/python-openbmclapi:${{env.RELEASE_VERSION}}
registry.cn-hangzhou.aliyuncs.com/silianz/python-openbmclapi:latest
registry.cn-hangzhou.aliyuncs.com/silianz/python-openbmclapi:${{env.RELEASE_VERSION}}
platforms: linux/amd64, linux/arm64