Skip to content

chore(deps): bump github.com/goccy/go-yaml from 1.11.3 to 1.12.0 #241

chore(deps): bump github.com/goccy/go-yaml from 1.11.3 to 1.12.0

chore(deps): bump github.com/goccy/go-yaml from 1.11.3 to 1.12.0 #241

Workflow file for this run

name: Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: '${{ matrix.os }}'
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
check-latest: true
- name: Build (Not Windows)
if: matrix.os != 'windows-latest'
run: 'go build -v -o cross-blogger_${{ matrix.os }}'
- name: Build (Windows)
if: matrix.os == 'windows-latest'
run: 'go build -v -o cross-blogger_${{ matrix.os }}.exe'
- uses: actions/upload-artifact@v4
with:
name: cross_blogger_${{ matrix.os }}
path: 'cross-blogger_${{ matrix.os }}*'