Skip to content

修改版本1.3.0

修改版本1.3.0 #24

Workflow file for this run

name: Experiment
on:
push:
tags:
- 'v*.*.*'
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: Get tag
id: tag
uses: devops-actions/[email protected]
with:
strip_v: false # Optional: Remove 'v' character from version
default: v0.0.0 # Optional: Default version when tag not found
- name: Use tag
run: echo ${{steps.tag.outputs.tag}}