diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml new file mode 100644 index 0000000..a3605e0 --- /dev/null +++ b/.github/workflows/release-test.yml @@ -0,0 +1,20 @@ +name: List tags +on: + workflow_dispatch: + inputs: + tag: + description: ' | 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 diff --git a/.github/workflows/version-bump-publish.yml b/.github/workflows/release.yml similarity index 100% rename from .github/workflows/version-bump-publish.yml rename to .github/workflows/release.yml