2021-10-06 12:43:18 -07:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'README.md'
|
|
|
|
- 'CONTRIBUTING.md'
|
|
|
|
- 'COPYING'
|
2022-05-12 22:54:59 -07:00
|
|
|
- 'website/**'
|
2021-10-06 12:43:18 -07:00
|
|
|
- '.github/*.md'
|
|
|
|
- '.github/FUNDING.yml'
|
|
|
|
|
|
|
|
name: Build Code
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-16 10:59:45 -08:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: pwsh
|
2021-10-06 12:43:18 -07:00
|
|
|
steps:
|
2021-12-19 02:28:46 -08:00
|
|
|
- name: Checkout code 👋
|
2023-10-17 17:28:25 -07:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
2021-12-19 02:28:46 -08:00
|
|
|
- name: Install Go 🗳
|
|
|
|
uses: ./.github/workflows/composite/bootstrap-go
|
|
|
|
- name: Run GoReleaser 🚀
|
2023-09-11 17:42:46 -07:00
|
|
|
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8
|
2021-10-06 12:43:18 -07:00
|
|
|
with:
|
|
|
|
distribution: goreleaser
|
|
|
|
version: latest
|
2023-12-16 11:55:39 -08:00
|
|
|
args: build --clean --snapshot --skip=post-hooks --skip=before
|
2021-10-06 12:43:18 -07:00
|
|
|
workdir: src
|
2022-12-16 11:47:46 -08:00
|
|
|
- name: Archive production artifacts
|
2024-02-05 16:05:13 -08:00
|
|
|
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
|
2022-12-16 11:47:46 -08:00
|
|
|
with:
|
|
|
|
name: builds
|
|
|
|
retention-days: 1
|
|
|
|
path: |
|
|
|
|
src/dist
|