ca9eff7051
Bumps the actions-minor group with 1 update: [actions/publish-action](https://github.com/actions/publish-action). Updates `actions/publish-action` from 0.2.2 to 0.3.0 - [Commits](https://github.com/actions/publish-action/compare/v0.2.2...v0.3.0) --- updated-dependencies: - dependency-name: actions/publish-action dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-minor ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
462 B
YAML
22 lines
462 B
YAML
name: Release new action version
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
|
|
env:
|
|
TAG_NAME: ${{ github.event.release.tag_name }}
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
update_tag:
|
|
name: Update the major tag to include the ${{ github.event.release.tag_name }}
|
|
changes
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update the ${{ env.TAG_NAME }} tag
|
|
uses: actions/publish-action@v0.3.0
|
|
with:
|
|
source-tag: ${{ env.TAG_NAME }}
|