mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-15 20:20:11 +08:00
80b7bb44f7
#### What this PR does / why we need it? DEPRECATED: --skip-publish was deprecated in favor of --skip=publish, check https://goreleaser.com/deprecations#-skip for more details #### Summary of your change #### Please indicate you've done the following: - [ ] Made sure tests are passing and test coverage is added if needed. - [ ] Made sure commit message follow the rule of [Conventional Commits specification](https://www.conventionalcommits.org/). - [ ] Considered the docs impact and opened a new docs issue or PR with docs changes if needed.
34 lines
No EOL
749 B
YAML
34 lines
No EOL
749 B
YAML
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@v4
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.2'
|
|
- 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@v5
|
|
with:
|
|
go-version: '1.22'
|
|
- name: Build Server
|
|
uses: goreleaser/goreleaser-action@v6
|
|
with:
|
|
args: release --snapshot --clean |