Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 302 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 302 Bytes

Create tag action

Format a deploy version tag for a git repository.

Usage

# ...
jobs:

  # ...

  docker:
    runs-on: ubuntu-latest
    steps:
      # ...
      - uses: actions/checkout@v4

      - name: Create tag
        uses: tweedegolf/create-tag-action@main

      # ...

  # ...