Skip to content

chore(deps-dev): Bump tailwindcss from 3.4.12 to 3.4.13 in /web #304

chore(deps-dev): Bump tailwindcss from 3.4.12 to 3.4.13 in /web

chore(deps-dev): Bump tailwindcss from 3.4.12 to 3.4.13 in /web #304

Workflow file for this run

name: Test build for PR
on:
pull_request:
types: [opened, synchronize]
paths-ignore:
- "README.md"
- "LICENSE"
- "docs/**"
- "**.sh"
- "**.md"
- "scripts/**"
- ".github/workflows/dependabot_action.yml"
- ".github/workflows/pre-release.yml"
- ".github/workflows/test-build.yml"
- ".github/workflows/docker.yml"
- ".github/dependabot.yml"
- ".github/workflows/sync-wiki.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- name: Build binary for ${{ matrix.goos }}/${{ matrix.goarch }}
run: |
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ./bin/jiotv_go-${{ matrix.goos }}-${{ matrix.goarch }} -ldflags "-s -w" .
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: jiotv_go-${{ matrix.goos }}-${{ matrix.goarch }}
path: ./bin/