chore: update beta.yml #12
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
name: Build and Release fideo | |
on: | |
push: | |
branches: | |
- beta | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install PNPM | |
run: npm install -g pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Get version from package.json | |
id: get_version | |
run: echo "VERSION=$(node -p -e "require('./package.json').version")" >> $GITHUB_ENV | |
shell: bash | |
- name: Build Electron App | |
run: | | |
if [ "${{ runner.os }}" == "Windows" ]; then | |
pnpm build:win | |
elif [ "${{ runner.os }}" == "macOS" ]; then | |
pnpm build:mac | |
fi | |
shell: bash | |
- name: Upload Windows build artifact | |
if: ${{ runner.os == 'Windows' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-win-${{ env.VERSION }}-beta | |
path: dist/fideo-${{ env.VERSION }}.exe | |
- name: Upload macOS build artifacts (x64) | |
if: ${{ runner.os == 'macOS' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-mac-x64-${{ env.VERSION }}-beta | |
path: dist/fideo-${{ env.VERSION }}-x64.dmg | |
- name: Upload macOS build artifacts (arm) | |
if: ${{ runner.os == 'macOS' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-mac-arm-${{ env.VERSION }}-beta | |
path: dist/fideo-${{ env.VERSION }}-arm64.dmg | |
create_release: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download all artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: artifacts | |
- name: Create release on GitLab | |
env: | |
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | |
GITLAB_PROJECT_ID: ${{ secrets.GITLAB_PROJECT_ID }} | |
run: | | |
VERSION=$(node -p -e "require('./package.json').version") | |
RELEASE_TAG="$VERSION-beta" | |
RELEASE_NAME="Release $RELEASE_TAG" | |
RELEASE_DESCRIPTION="Automated release for version $RELEASE_TAG" | |
# 创建GitLab release | |
release_response=$(curl --fail --request POST --header "PRIVATE-TOKEN: $GITLAB_TOKEN" \ | |
--data "name=$RELEASE_NAME" \ | |
--data "tag_name=$RELEASE_TAG" \ | |
--data "description=$RELEASE_DESCRIPTION" \ | |
"https://gitlab.com/api/v4/projects/$GITLAB_PROJECT_ID/releases") | |
if [ $? -ne 0 ]; then | |
echo "Failed to create GitLab release" | |
echo "$release_response" | |
exit 1 | |
fi | |
# 获取release ID | |
release_id=$(echo $release_response | jq -r '.id') | |
# 上传文件函数 | |
upload_file() { | |
local file=$1 | |
local asset_name=$2 | |
local asset_link_name=$3 | |
response=$(curl --fail --request POST --header "PRIVATE-TOKEN: $GITLAB_TOKEN" \ | |
--form "file=@$file" \ | |
--form "asset_link_name=$asset_link_name" \ | |
"https://gitlab.com/api/v4/projects/$GITLAB_PROJECT_ID/releases/$release_id/assets/links") | |
if [ $? -ne 0 ]; then | |
echo "Failed to upload $asset_name" | |
echo "$response" | |
exit 1 | |
fi | |
echo "Uploaded $asset_name successfully" | |
} | |
# 上传文件 | |
upload_file "artifacts/build-win-$VERSION-beta/fideo-$VERSION.exe" "Windows" "Windows Executable" | |
upload_file "artifacts/build-mac-x64-$VERSION-beta/fideo-$VERSION-x64.dmg" "macOS x64" "macOS x64 Disk Image" | |
upload_file "artifacts/build-mac-arm-$VERSION-beta/fideo-$VERSION-arm64.dmg" "macOS ARM" "macOS ARM Disk Image" | |
echo "GitLab release created and assets uploaded successfully" |