mirror of
https://github.com/actions/cache.git
synced 2026-07-04 06:09:31 +00:00
Switched to forked toolkit
This commit is contained in:
parent
8cf0abb534
commit
fed9ab945e
70 changed files with 219203 additions and 26887 deletions
26
.github/workflows/release.yml
vendored
Normal file
26
.github/workflows/release.yml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
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
|
||||
|
||||
env:
|
||||
tag_name: ${{ github.event.inputs.tag_name || github.event.release.tag_name }}
|
||||
|
||||
jobs:
|
||||
update_tag:
|
||||
name: Release the new action
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Update the ${{ env.tag_name }} tag
|
||||
uses: actions/publish-action@v0.2.2
|
||||
with:
|
||||
source-tag: ${{ env.tag_name }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue