Skip to content

Merge pull request #3 from ajshastri/dependabot/go_modules/golang.org… #71

Merge pull request #3 from ajshastri/dependabot/go_modules/golang.org…

Merge pull request #3 from ajshastri/dependabot/go_modules/golang.org… #71

name: Checksum builder Windows
on:
push:
# branches:
# - main
tags:
- '*'
jobs:
build:
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT || github.token }}
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
check-latest: true
- name: compile
run: go build checksum.go
- name: Test
run: |
touch file
echo 1 >> file
.\checksum.exe -s sha256 -f file
.\checksum.exe -s sha256 -f checksum.exe > checksum.exe.sha256
Compress-Archive -LiteralPath '.\checksum.exe', 'checksum.exe.sha256' -DestinationPath 'checksum-win.zip'
.\checksum.exe -s sha256 -f 'checksum-win.zip' > checksum-win.zip.sha256
- name: Upload to checksum binary to github
uses: actions/upload-artifact@v3
with:
name: checksum_win
path: |
checksum-win.zip
checksum-win.zip.sha256
- name: Upload Release Asset
id: upload-windows-binary
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
with:
files: |
checksum-win.zip
checksum-win.zip.sha256