Skip to content

Commit

Permalink
update build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcalmer committed May 21, 2024
1 parent 63cc70c commit 88126ea
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
# SPDX-FileCopyrightText: 2024 SUSE LLC
#
# SPDX-License-Identifier: BSD3

name: Go
name: Build

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
types:
- opened
- reopened
- synchronize
release:
types:
- published

jobs:

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v4
Expand All @@ -34,4 +42,3 @@ jobs:
with:
name: binaries
path: ./bin/*

0 comments on commit 88126ea

Please sign in to comment.