Skip to content

mdpete4/substring-branch-name-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Substring branch name after a separator

GitHub Actions that substring the branch name after the first occurrence of a given separator.

Input

This action requires the separator attribute of type string. Examples: release- or rc/.

Output

This action output the value in value variable.

Example

name: Example
jobs:
  generate:
    steps:
      - uses: actions/checkout@v2
      - name: Substring branch name
        id: substring
        uses: ricardorames/[email protected]
        with:
            separator: 'release-'
      - name: Build and push Docker images
        uses: docker/[email protected]
        with:
          username: ${{secrets.DOCKER_REGISTRY_USERNAME}}
          password: ${{secrets.DOCKER_REGISTRY_PASSWORD}}
          registry: your.registry.io
          repository: your-repository
          tags: ${{steps.substring.outputs.value}}
          tag_with_ref: false
          tag_with_sha: false

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%