Merge pull request #326 from cfergeau/gh #1
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 build | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 # explicitly use 20.04, see commit 428c40018a | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: >- | |
WORKAROUND: Fetch tags that points to the revisions | |
checked-out(actions/checkout#1467) | |
run: |- | |
git fetch --tags --force | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
- name: Build | |
run: | | |
make cross qemu-wrapper vm win-gvproxy win-sshproxy | |
mv bin/gvproxy.exe bin/gvproxy-windowsgui.exe | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: gvisor-tap-vsock-binaries | |
path: bin/* |