增加minikube部署轻量kubernetes文档 #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |