0.1.0 • Published 3 years ago

@fundamend/action-github-tag v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

action-github-tag

action-github-tag is a workflow for GitHub Actions used by the fundamend.dev ecosystem. It tags the head of the repository with the supplied tag.

Usage

In your repository, create a workflow that uses action-github-tag, like so:

name: Tag

on: [push]

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - name: Tag
        uses: fundamend/action-github-tag@main
        with:
          tag: '0.0.1'
          github-token: ${{ secrets.GITHUB_TOKEN }}

The action takes the following inputs:

KeyDescription
tag*The tag that should be created
github-token*Your GitHub token

The * indicates mandatory input.

License

MIT

0.1.0

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.5

3 years ago