build(deps): bump github.com/onsi/gomega from 1.34.2 to 1.35.0 #2917
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: Build RPM | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: {} | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
go: | |
- '1.22' | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build rpm | |
run: CONTAINER_RUNTIME=docker make test-rpmbuild | |
- name: Upload linux binary and rpms | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux binary and rpm | |
path: | | |
./crc | |
./RPMS |