Skip to content

fix(deps): update module github.com/chromedp/chromedp to v0.9.3 #351

fix(deps): update module github.com/chromedp/chromedp to v0.9.3

fix(deps): update module github.com/chromedp/chromedp to v0.9.3 #351

Workflow file for this run

name: release
on:
push:
tags:
- v*
branches:
- master
paths:
- .github/workflows/release.yaml
- pkg/**
- go.*
pull_request:
branches:
- master
paths:
- .github/workflows/release.yaml
- pkg/**
- go.*
jobs:
build:
strategy:
matrix:
platform:
- runs-on: ubuntu-latest
GOOS: linux
GOARCH: amd64
- runs-on: ubuntu-latest
GOOS: linux
GOARCH: arm64
- runs-on: ubuntu-latest
GOOS: linux
GOARCH: arm
- runs-on: ubuntu-latest
GOOS: darwin
GOARCH: amd64
- runs-on: ubuntu-latest
GOOS: darwin
GOARCH: arm64
- runs-on: ubuntu-latest
GOOS: windows
GOARCH: amd64
runs-on: ${{ matrix.platform.runs-on }}
env:
GOOS: ${{ matrix.platform.GOOS }}
GOARCH: ${{ matrix.platform.GOARCH }}
CGO_ENABLED: 0
timeout-minutes: 10
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-go@v4
with:
go-version: 1.21.2
- run: go build -ldflags '-X main.version=${{ github.ref_name }}'
- uses: int128/go-actions/release@v1
with:
binary: kauthproxy
publish:
if: github.ref_type == 'tag'
needs:
- build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: rajatjindal/[email protected]