Skip to content

Action to run semantic-release with deps for semantic-release-config preinstalled

License

Notifications You must be signed in to change notification settings

sitkoru/semantic-release-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

semantic-release-action

Action to run semantic-release with deps for semantic-release-config preinstalled

Usage

name: Main

on:
  push:
    branches:
      - "*"
  pull_request:

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
        # some build steps
  release:
    name: Release
    runs-on: ubuntu-latest
    needs: [build]
    if: ${{ github.event_name == 'push' }}
    steps:
      - name: Checkout
        uses: actions/checkout@v2
        with:
          fetch-depth: 0
          persist-credentials: false
      - name: Semantic Release
        uses: sitkoru/semantic-release-action@v1
        env:
          GH_TOKEN: # GH TOKEN
          # other semantic-release env variables

About

Action to run semantic-release with deps for semantic-release-config preinstalled

Resources

License

Stars

Watchers

Forks