mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-11 15:13:06 +08:00
Some checks failed
Internal - Main - Continuous Integration / ci (push) Has been cancelled
Need fix to Issue / main (push) Has been cancelled
Internal - Main - Continuous Integration / release (push) Has been cancelled
Mark stale issues and pull requests / main (push) Has been cancelled
Bumps the github-actions-dependencies group with 2 updates: [actions/github-script](https://github.com/actions/github-script) and [actions/publish-action](https://github.com/actions/publish-action). Updates `actions/github-script` from 7.0.1 to 8.0.0 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](60a0d83039...ed597411d8) Updates `actions/publish-action` from 0.3.0 to 0.4.0 - [Commits](f784495ce7...23f4c6f126) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/publish-action dependency-version: 0.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
794 B
YAML
30 lines
794 B
YAML
name: Release new action version
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
workflow_dispatch:
|
|
inputs:
|
|
#checkov:skip=CKV_GHA_7: required
|
|
TAG_NAME:
|
|
description: "Tag name that the major tag will point to"
|
|
required: true
|
|
|
|
env:
|
|
TAG_NAME: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
update_tag:
|
|
name: Update the major tag to include the ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }} changes
|
|
environment:
|
|
name: releaseNewActionVersion
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update the ${{ env.TAG_NAME }} tag
|
|
uses: actions/publish-action@23f4c6f12633a2da8f44938b71fde9afec138fb4 # v0.4.0
|
|
with:
|
|
source-tag: ${{ env.TAG_NAME }}
|