From 0d50c0c2fdc62b1de03ecb3895d9e4c3b4b266ff Mon Sep 17 00:00:00 2001 From: Oliver Lippert Date: Thu, 1 Feb 2024 23:39:28 +0100 Subject: [PATCH] gitea tag action --- .gitea/workflows/tag.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/tag.yml diff --git a/.gitea/workflows/tag.yml b/.gitea/workflows/tag.yml new file mode 100644 index 0000000..0c5172e --- /dev/null +++ b/.gitea/workflows/tag.yml @@ -0,0 +1,17 @@ +name: on tags + +on: + push: + tags: + + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - name: Ref + shell: bash + run: echo ${{ github.ref }}