mirror of
https://github.com/yuaotian/go-cursor-help.git
synced 2025-06-08 12:32:06 +08:00
chore: update auto-tag workflow to require Ubuntu 22.04
- Modified the workflow to specify Ubuntu 22.04 as the runner environment, ensuring compatibility with the latest features. - Added a note indicating the requirement for Ubuntu 22.04 or 24.04, enhancing clarity for future contributors.
This commit is contained in:
parent
ff67a07ca7
commit
f192037eb5
6
.github/workflows/auto-tag-release.yml
vendored
6
.github/workflows/auto-tag-release.yml
vendored
@ -1,3 +1,5 @@
|
|||||||
|
# This workflow requires Ubuntu 22.04 or 24.04
|
||||||
|
|
||||||
name: Auto Tag & Release
|
name: Auto Tag & Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@ -19,7 +21,7 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pre_job:
|
pre_job:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
outputs:
|
outputs:
|
||||||
should_skip: ${{ steps.skip_check.outputs.should_skip }}
|
should_skip: ${{ steps.skip_check.outputs.should_skip }}
|
||||||
steps:
|
steps:
|
||||||
@ -34,7 +36,7 @@ jobs:
|
|||||||
if: |
|
if: |
|
||||||
needs.pre_job.outputs.should_skip != 'true' ||
|
needs.pre_job.outputs.should_skip != 'true' ||
|
||||||
startsWith(github.ref, 'refs/tags/v')
|
startsWith(github.ref, 'refs/tags/v')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
outputs:
|
outputs:
|
||||||
version: ${{ steps.get_latest_tag.outputs.version }}
|
version: ${{ steps.get_latest_tag.outputs.version }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user