Skip to content

Commit

Permalink
Update build_xptools.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
meikelm authored Jul 9, 2024
1 parent 2438cb6 commit 7c28c45
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build_xptools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Archive build result
uses: actions/upload-artifact@main
with:
name: xpt_release_build
name: xpt_artifact-win
path: msvc/*.exe

build-mac:
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Checkout repo
uses: actions/checkout@main
with:
submodules: yes
submodules: no
- name: Setup Credentials
uses: apple-actions/import-codesign-certs@v2
with:
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Archive build result
uses: actions/upload-artifact@main
with:
name: xpt_release_build
name: xpt_artifact-osx
path: build/XPT.xcarchive/Products

build-linux:
Expand All @@ -80,7 +80,7 @@ jobs:
- name: Checkout repo
uses: actions/checkout@main
with:
submodules: true
submodules: no
- name: Build Libs
run: |
git config --global --add safe.directory /__w/xptools/xptools
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Archive build result
uses: actions/upload-artifact@main
with:
name: xpt_release_build
name: xpt_artifact-lin
path: |
build/Linux/release_opt/DDSTool
build/Linux/release_opt/DSFTool
Expand All @@ -107,10 +107,13 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@main
with:
submodules: no
- name: get build results
uses: actions/download-artifact@main
with:
name: xpt_release_build
parttern: xpt_artifact-*
merge-multiple: true
- name: zip files
run: |
version=$(awk '/XPT_PACKAGE_VER[\s\t]/ {gsub(/"/,""); print $3}' <src/XPTools/version.h)
Expand Down

0 comments on commit 7c28c45

Please sign in to comment.