Skip to content

Merge pull request #109 from shogo82148/introduce-integration-test #5

Merge pull request #109 from shogo82148/introduce-integration-test

Merge pull request #109 from shogo82148/introduce-integration-test #5

Workflow file for this run

name: goreleaser
on:
push:
tags:
- "v1.*"
jobs:
goreleaser:
permissions:
contents: write
id-token: write
statuses: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
cache-dependency-path: go.sum
- name: Configure AWS Credentials
uses: fuller-inc/actions-aws-assume-role@v1
with:
aws-region: ap-northeast-1
role-to-assume: arn:aws:iam::445285296882:role/rpm-repository-users-RdsMySQLDeployRole-XDibbGv88soX
role-session-tagging: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
workdir: .
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}