Updated to 15.x #78
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: infinispan-nupkg | |
env: | |
ISPN_VER: "15.0.0.Dev04" | |
on: | |
push: | |
branches: | |
- 'main' | |
- '9.3.x' | |
pull_request: | |
branches: | |
- 'main' | |
- '9.3.x' | |
jobs: | |
run-ci-nupkg: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Inject slug/short variables | |
uses: rlespinasse/github-slug-action@v4 | |
- name: Get Runner Info | |
uses: kenchan0130/actions-system-info@master | |
id: sysinfo | |
- run: echo $GITHUB_REF_NAME | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
with: | |
msbuild-architecture: x64 | |
# with: | |
# vs-version: "[17.0,17.2)" | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
#- uses: actions/setup-python@v4 | |
# with: | |
# python-version: "3.x" # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
# architecture: "x64" # optional x64 or x86. Defaults to x64 if not specified | |
- name: Setup nuget | |
uses: nuget/setup-nuget@v1 | |
# - name: Find Tag | |
# id: tagger | |
# uses: jimschubert/query-tag-action@v1 | |
# with: | |
# include: '9.2.*' | |
# skip-unshallow: "true" | |
- name: Set tag | |
run: | | |
pwd | |
$tg = "0.0.0-${{ env.GITHUB_REF_NAME }}-latest" | |
"CLIENT_VERSION=$tg" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
"ARCH=${{ steps.sysinfo.outputs.platform }}-${{ steps.sysinfo.outputs.release }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
- name: Build C# | |
shell: pwsh | |
env: | |
buildTag: "${{ env.GITHUB_REF_NAME }}-latest" | |
run: | | |
.\build.ps1 QuickPack | |
- name: Delete old release assets | |
uses: mknejp/delete-release-assets@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ env.GITHUB_REF_NAME }}-latest | |
assets: '*.nupkg' | |
fail-if-no-assets: false | |
fail-if-no-release: false | |
- uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "src/Infinispan.HotRod/bin/RelWithDebInfo/*.nupkg" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
allowUpdates: true | |
tag: ${{ env.GITHUB_REF_NAME }}-latest | |
prerelease: true |