Skip to content

Add ability to handle certificate renewal event from eventbridge #14

Add ability to handle certificate renewal event from eventbridge

Add ability to handle certificate renewal event from eventbridge #14

Workflow file for this run

name: release
on:
push:
tags:
- '*'
jobs:
build_release:
name: build_release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Download Go dependencies
run: go mod download
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}