fix: 解决第二次上传同名文件不显示的问题 (#4737) #1
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
on: | |
pull_request: | |
branches: | |
- dev | |
push: | |
branches: | |
- dev | |
name: Build Test | |
jobs: | |
build-linux-binary: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.14' | |
- name: Build Web | |
id: build_frontend | |
run: | | |
cd frontend && npm install && npm run build:pro | |
env: | |
NODE_OPTIONS: --max-old-space-size=8192 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20.x' | |
- name: Build Server | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
args: release --snapshot --clean |