From d83be291a5f1b94f089130a180232d670f0d857d Mon Sep 17 00:00:00 2001 From: djagoda881 Date: Tue, 14 Nov 2023 11:02:59 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20added=20release=20acition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..d34d7bd --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ + +name: "Release" + +on: + push: + tags: + - "v*.*.*" # Match tags that start with 'v' + workflow_dispatch: + inputs: + tag: + description: Tag for automatic release + required: true + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ncipollo/release-action@v1 \ No newline at end of file