Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
treefrogframework committed Nov 3, 2024
1 parent fffdf97 commit d5e0ff5
Showing 1 changed file with 33 additions and 41 deletions.
74 changes: 33 additions & 41 deletions .github/workflows/build-relase.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Build and Release

# on:
# push:
# tags:
# - 'v*'

on:
push:
branches:
- master
pull_request:
branches:
- master
tags:
- 'v*'

# on:
# push:
# branches:
# - master
# pull_request:
# branches:
# - master

jobs:
build:
Expand All @@ -37,45 +37,37 @@ jobs:
vs-version: '16.11'
msbuild-architecture: x64

# - name: Set up MSVC
# shell: cmd
# run: |
# call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
# where.exe cl.exe
# where.exe nmake.exe

- name: Build
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
echo %PATH%
where.exe qmake
where.exe cl.exe
where.exe nmake.exe
# where.exe qmake
# where.exe cl.exe
# where.exe nmake.exe
qmake CONFIG+=release
nmake
- name: Create 7Z file
run: |
7z a cpi-windows.7z cpi.exe LICENSE translations
7z a cpi-windows.7z cpi.exe Qt6Core.dll LICENSE translations
# - name: Create release
# id: create_release
# uses: actions/create-release@main
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: Release ${{ github.ref }}
# draft: false
# prerelease: false
- name: Create release
id: create_release
uses: actions/create-release@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

# - name: Upload release asset
# uses: actions/upload-release-asset@main
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: cpi-windows.7z
# asset_name: cpi-windows-${{ github.ref_name }}.7z
# asset_content_type: application/x-7z-compressed
- name: Upload release asset
uses: actions/upload-release-asset@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: cpi-windows.7z
asset_name: cpi-windows-${{ github.ref_name }}.7z
asset_content_type: application/x-7z-compressed

0 comments on commit d5e0ff5

Please sign in to comment.