Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
hotbso committed Nov 20, 2024
1 parent 31888b8 commit a6fc526
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,14 @@ jobs:
make -f Makefile.mac64
fi
- name: Upload Build Artifact XP12
uses: actions/upload-artifact@v3
with:
name: build-${{ matrix.os }}-xp12
path: |
openSAM-pkg/openSAM/*_x64
tar cvf binary.tar openSAM-pkg*/openSAM/*_x64
- name: Upload Build Artifact XP11
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: build-${{ matrix.os }}-xp11
name: build-${{ matrix.os }}
path: |
openSAM-pkg_XP11/openSAM/*_x64
binary.tar
release:
runs-on: windows-latest
Expand Down Expand Up @@ -101,6 +96,15 @@ jobs:
run: |
ls -lR ./build
- name: Consolidate platform builds
shell: bash
run: |
for t in ./build/*/binary.tar
do
tar xvf $t
done
./mk_zip
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit a6fc526

Please sign in to comment.