Skip to content

build(deps): bump golang.org/x/oauth2 from 0.21.0 to 0.24.0 #133

build(deps): bump golang.org/x/oauth2 from 0.21.0 to 0.24.0

build(deps): bump golang.org/x/oauth2 from 0.21.0 to 0.24.0 #133

Workflow file for this run

name: build-many
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- '*'
jobs:
multi-os:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Build
run: |
make release
mkdir artifact
mv lgs* artifact
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: artifact-${{ github.sha }}-${{ matrix.os }}
path: artifact
retention-days: 1
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build image
run: docker build -t lgs .