diff --git a/.gitea/actions/release-git-tag/action.yaml b/.gitea/actions/release-git-tag/action.yaml deleted file mode 100644 index c7e3fab..0000000 --- a/.gitea/actions/release-git-tag/action.yaml +++ /dev/null @@ -1,15 +0,0 @@ -name: Release Git tag -description: Release the Git tag - -inputs: - tag: - description: The tag to release - required: true - -runs: - using: "composite" - steps: - - shell: bash - run: | - git tag ${{ inputs.tag }} - git push origin ${{ inputs.tag }} diff --git a/.gitea/workflows/cd.yaml b/.gitea/workflows/cd.yaml index a9c1e85..579a28b 100644 --- a/.gitea/workflows/cd.yaml +++ b/.gitea/workflows/cd.yaml @@ -18,6 +18,6 @@ jobs: uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@0.1.1 with: token: ${{ secrets.GITEA_TOKEN }} - - uses: ./.gitea/actions/release-git-tag + - uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@0.0.3 with: tag: ${{ steps.tag.outputs.new-tag }}