Modifies pipeline file write logic #66
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: release | |
on: | |
workflow_dispatch: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
paths: | |
- '**' | |
- '!docs/**' | |
- '!README.md' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v2.1.0 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Calculate version | |
run: curl -Ls https://solugo.github.io/gitversion/run.sh | GITVERSION=v0.0.7 bash | |
- name: Build | |
run: ./gradlew clean linuxX64Test linkReleaseExecutableLinuxX64 linkReleaseExecutableWindowsX64 | |
- name: Prepare Release | |
run: | | |
mkdir "release" | |
cp "build/bin/linuxX64/releaseExecutable/gitversion.kexe" "release/gitversion-linux-x64" | |
cp "build/bin/windowsX64/releaseExecutable/gitversion.exe" "release/gitversion-windows-x64.exe" | |
- name: Upload Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: v${{ env.VERSION }} | |
files: | | |
release/gitversion-linux-x64 | |
release/gitversion-windows-x64.exe |