v1.0.3 #25
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: Release | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
CreateAndPushWindowsExecutable: | |
name: CreateAndPushWindowsExecutable | |
strategy: | |
matrix: | |
go: [ 1.22.7 ] | |
goarch: [ amd64 ] | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
id: go | |
- name: Setting EnvVariable to checkout newLine char properly | |
shell: bash | |
run: | | |
git config --system core.autocrlf false | |
git config --system core.eol lf | |
- name: Checking out the code | |
uses: actions/checkout@v2 | |
- name: Test and Build | |
shell: powershell | |
run: | | |
$ErrorView = 'NormalView' | |
[Environment]::SetEnvironmentVariable("path", "$env:path;$env:GOPATH\bin", "Machine") | |
.\win_build.ps1 -arch ${{ matrix.goarch }} -version ${{ github.event.release.tag_name }} | |
- name: Create Tar and Zip | |
shell: bash | |
run: | | |
cp winservices-config.yml.sample ./target/bin/windows_${{ matrix.goarch }} | |
7z a ${{ github.event.repository.name }}-${{ github.event.release.tag_name }}-${{ matrix.goarch }}.zip ./target/bin/windows_${{ matrix.goarch }}/* | |
- name: Upload Integration binary | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: .\target\bin\windows_${{ matrix.goarch }}\${{ github.event.repository.name }}.exe | |
asset_name: ${{ github.event.repository.name }}-${{ matrix.goarch }}.exe | |
asset_content_type: Integration binary | |
- name: Upload exporter binary | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: .\target\bin\windows_${{ matrix.goarch }}\windows_exporter.exe | |
asset_name: windows-exporter-${{ matrix.goarch }}.exe | |
asset_content_type: Exporter binary | |
- name: Upload Zip | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./${{ github.event.repository.name }}-${{ github.event.release.tag_name }}-${{ matrix.goarch }}.zip | |
asset_name: ${{ github.event.repository.name }}-${{ github.event.release.tag_name }}-${{ matrix.goarch }}.zip | |
asset_content_type: Integration Zip |