👷 监控客户端自动化构建

This commit is contained in:
chaos-zhu 2024-08-16 13:20:39 +08:00
parent 3fe458db69
commit 68ea2db18e

View File

@ -41,14 +41,18 @@ jobs:
run: npm run pkglinux:arm64 run: npm run pkglinux:arm64
working-directory: client working-directory: client
- name: Set tag name
id: tag_name
run: echo "TAG_NAME=client-$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- name: Create Release - name: Create Release
id: create_release id: create_release
uses: actions/create-release@v1 uses: actions/create-release@v1
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
tag_name: ${{ github.ref }} tag_name: ${{ env.TAG_NAME }}
release_name: Release ${{ github.ref }} release_name: ${{ env.TAG_NAME }}
draft: false draft: false
prerelease: false prerelease: false