mirror of
https://github.com/easingthemes/ssh-deploy.git
synced 2024-11-12 13:48:07 +00:00
21 lines
471 B
YAML
21 lines
471 B
YAML
|
name: List tags
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
inputs:
|
||
|
tag:
|
||
|
description: '<newversion> | major | minor | patch'
|
||
|
required: true
|
||
|
default: 'patch'
|
||
|
jobs:
|
||
|
checkout:
|
||
|
name: checkout
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- run: |
|
||
|
git config user.name github-actions
|
||
|
git config user.email github-actions@github.com
|
||
|
- name: List tags
|
||
|
run: git tag -l
|