Bump version to 3.0.0-alpha1.4 #14
Workflow file for this run
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: Publish Nuget packages | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
publish-self-hosted: | |
name: Build, test, and publish Nuget packages on self-hosted server with GPU | |
if: github.repository_owner == 'YaccConstructor' | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: OpenCL Info | |
run: clinfo | |
- name: Build, test, publish | |
env: | |
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }} | |
FAKE_DETAILED_ERRORS: true | |
CI: true | |
run: | | |
chmod +x ./build.sh | |
./build.sh Publish |