mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-23 02:30:26 +08:00
28 lines
541 B
YAML
28 lines
541 B
YAML
name: 🚀 Release new action version
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
|
|
workflow_dispatch:
|
|
inputs:
|
|
TAG_NAME:
|
|
description: Tag name that the major tag will point to
|
|
required: true
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
update_tag:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/publish-action@v0.3.0
|
|
env:
|
|
TAG_NAME: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
|
|
with:
|
|
source-tag: ${{ env.TAG_NAME }}
|