From 33648ba2caadd4f1a97818e8f2acdb05b97c08a8 Mon Sep 17 00:00:00 2001 From: Dragan Filipovic Date: Sat, 17 Apr 2021 01:03:01 +0200 Subject: [PATCH] CI - test tags --- .github/workflows/release-test.yml | 20 +++++++++++++++++++ .../{version-bump-publish.yml => release.yml} | 0 2 files changed, 20 insertions(+) create mode 100644 .github/workflows/release-test.yml rename .github/workflows/{version-bump-publish.yml => release.yml} (100%) 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