From 1db7d1b8aa4ee410d9476a9ef6057fffac877ba1 Mon Sep 17 00:00:00 2001 From: "Sakamoto, Kazunori" Date: Sat, 18 Apr 2026 16:04:35 +0900 Subject: [PATCH] ci: add release workflow Co-authored-by: WillBooster (Codex CLI) --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..14d709f --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,18 @@ +name: Release +on: + push: + branches: + - main +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: false +permissions: + id-token: write + contents: write +jobs: + release: + uses: WillBooster/reusable-workflows/.github/workflows/release.yml@main + with: + github_hosted_runner: true + secrets: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}