mirror of
https://github.com/actions/upload-pages-artifact.git
synced 2026-06-09 16:46:55 +00:00
Bumps the non-breaking-changes group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/publish-immutable-action](https://github.com/actions/publish-immutable-action) and [actions/publish-action](https://github.com/actions/publish-action).
Updates `actions/upload-artifact` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](bbbca2ddaa...043fb46d1a)
Updates `actions/publish-immutable-action` from 0.0.3 to 0.0.4
- [Release notes](https://github.com/actions/publish-immutable-action/releases)
- [Commits](https://github.com/actions/publish-immutable-action/compare/0.0.3...v0.0.4)
Updates `actions/publish-action` from 0.3.0 to 0.4.0
- [Commits](https://github.com/actions/publish-action/compare/v0.3.0...v0.4.0)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: 7.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: non-breaking-changes
- dependency-name: actions/publish-immutable-action
dependency-version: 0.0.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: non-breaking-changes
- dependency-name: actions/publish-action
dependency-version: 0.4.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: non-breaking-changes
...
Signed-off-by: dependabot[bot] <support@github.com>
31 lines
802 B
YAML
31 lines
802 B
YAML
name: Release
|
|
on:
|
|
release:
|
|
types: [released]
|
|
workflow_dispatch:
|
|
inputs:
|
|
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
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
# Note: this environment is protected
|
|
name: Release
|
|
steps:
|
|
- name: Update the ${{ env.TAG_NAME }} tag
|
|
id: update-major-tag
|
|
uses: actions/publish-action@v0.4.0
|
|
with:
|
|
source-tag: ${{ env.TAG_NAME }}
|
|
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|