Skip to content

chore(schema): update talconfig.yaml JSON schema #301

chore(schema): update talconfig.yaml JSON schema

chore(schema): update talconfig.yaml JSON schema #301

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: goreleaser
on:
workflow_dispatch:
inputs:
dry-run:
description: "Dry Run"
default: false
required: false
type: boolean
push:
tags: ["*"]
pull_request:
paths:
- ".github/workflows/release.yaml"
- ".goreleaser.yaml"
- "go.mod"
- "go.sum"
- "main.go"
- "cmd/**"
- "pkg/**"
env:
GORELEASER_DRY_RUN: "${{ inputs.dry-run || github.event_name == 'pull_request' }}"
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version: stable
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: goreleaser/goreleaser-action@v6
with:
args: release --clean ${{ env.GORELEASER_DRY_RUN == 'true' && '--snapshot' || '' }}
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
AUR_KEY: "${{ secrets.AUR_KEY }}"