Skip to content

Commit

Permalink
prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
csett86 authored Aug 4, 2023
1 parent 8955ab7 commit 4e25078
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,30 @@ jobs:
name: xerces-c-3.2.4-windows-mingw-x64.zip
path: xerces-c-3.2.4-windows-mingw-x64.zip
if-no-files-found: error

release:
name: Release
needs: [build-mac, build-linux, build-msvc, build-mingw]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: xerces-c-3.2.4-maxos-11-universal.zip
- uses: actions/download-artifact@v3
with:
name: xerces-c-3.2.4-linux-x64.zip
- uses: actions/download-artifact@v3
with:
name: xerces-c-3.2.4-windows-msvc-2019-x64.zip
- uses: actions/download-artifact@v3
with:
name: xerces-c-3.2.4-windows-mingw-x64.zip
- uses: softprops/action-gh-release@v1
with:
fail_on_unmatched_files: true
prerelease: true
files: |
xerces-c-3.2.4-maxos-11-universal.zip
xerces-c-3.2.4-linux-x64.zip
xerces-c-3.2.4-windows-msvc-2019-x64.zip
xerces-c-3.2.4-windows-mingw-x64.zip

0 comments on commit 4e25078

Please sign in to comment.