Skip to content

Commit

Permalink
Merge pull request #314 from cfergeau/gh
Browse files Browse the repository at this point in the history
github actions/dependabot improvements
  • Loading branch information
openshift-merge-bot[bot] authored Feb 1, 2024
2 parents 310a231 + cf2df89 commit 49905e8
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,13 @@ updates:
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/tools"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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@v3

- name: Build
run: |
make cross qemu-wrapper vm win-gvproxy win-sshproxy
mv bin/gvproxy.exe bin/gvproxy-windowsgui.exe
- uses: actions/upload-artifact@v3
with:
name: gvisor-tap-vsock-binaries
path: bin/*

0 comments on commit 49905e8

Please sign in to comment.