Skip to content

Github Action that allows you to commit local changes & tag Go repositories

License

Notifications You must be signed in to change notification settings

PackagrIO/action-releasr-generic

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

action-releasr-generic

portfolio_view

Github Action that allows you to commit local changes & tag Generic repositories

Documentation

Full documentation is available at PackagrIO/docs

Usage

name: Release
jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    container: ghcr.io/packagrio/packagr-dev:master
    steps:
      # Fetch depth 0 is required for committing changes
      - name: Checkout
        uses: actions/checkout@v2
        with:
          fetch-depth: 0
      # ... do your compile, testing, bumpr, etc steps here.
      - name: Commit Changes
        id: commit
        uses: packagrio/action-releasr-generic@master
        env:
          # This is necessary in order to push a commit to the repo
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged

      # ... do your publishr steps here.

Inputs

Outputs

About

Github Action that allows you to commit local changes & tag Go repositories

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Shell 72.3%
  • Dockerfile 27.7%