Skip to content

Release v1.15.0

Release v1.15.0 #104

Workflow file for this run

---
name: Release
run-name: Release ${{inputs.tag}}
on:
workflow_dispatch:
inputs:
tag:
description: "tag"
required: true
pr:
description: "pr number (pre-release)"
required: false
jobs:
release:
timeout-minutes: 30
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: true # This is required to push a commit
- run: gh pr checkout "$PR"
if: inputs.pr != ''
env:
GITHUB_TOKEN: ${{github.token}}
PR: ${{inputs.pr}}
- uses: aquaproj/aqua-installer@f13c5d2f0357708d85477aabe50fd3f725528745 # v3.1.0
with:
aqua_version: v2.41.0
env:
GITHUB_TOKEN: ${{github.token}}
- run: cmdx build
shell: bash
- uses: suzuki-shunsuke/release-js-action@0696e3fc3386d4f3d2dfd9e194e8e14052cea99d # v0.1.4
with:
version: ${{inputs.tag}}
pr: ${{inputs.pr}}