Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,27 @@ jobs:
version: 'latest'

- name: Build
run: make build
run: make build

- name: Upload artifact
uses: 'actions/upload-artifact@v4'
with:
name: sshexec
path: |
out/sshexec-amd64
out/sshexec-arm64
if-no-files-found: error
overwrite: true

- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
generate_release_notes: true
files: |
out/sshexec-amd64
out/sshexec-arm64
append_body: true
draft: false
prerelease: false
make_latest: true