https://github.com/sitkoru/semantic-release-action
Action to run semantic-release with deps for semantic-release-config preinstalled
https://github.com/sitkoru/semantic-release-action
Last synced: 8 months ago
JSON representation
Action to run semantic-release with deps for semantic-release-config preinstalled
- Host: GitHub
- URL: https://github.com/sitkoru/semantic-release-action
- Owner: sitkoru
- License: mit
- Created: 2021-09-20T05:25:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-03T20:54:00.000Z (almost 2 years ago)
- Last Synced: 2025-07-07T23:13:09.540Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# semantic-release-action
Action to run semantic-release with deps for semantic-release-config preinstalled
## Usage
```yml
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
```