Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasmelin/molting-release-action
GitHub Action to update and release new versions of your software
https://github.com/lucasmelin/molting-release-action
action actions github-action github-actions python release
Last synced: 6 days ago
JSON representation
GitHub Action to update and release new versions of your software
- Host: GitHub
- URL: https://github.com/lucasmelin/molting-release-action
- Owner: lucasmelin
- Created: 2022-03-16T17:39:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-21T02:31:22.000Z (almost 3 years ago)
- Last Synced: 2024-12-13T11:41:38.993Z (2 months ago)
- Topics: action, actions, github-action, github-actions, python, release
- Homepage: https://github.com/marketplace/actions/create-a-release-using-molting
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐍🐍 molting Release Action
GitHub Action to automate releases using [`molting`](https://github.com/lucasmelin/molting).
## Examples
### Trigger a new version on every push
```yaml
name: molting release
on: [push]jobs:
molting_job:
runs-on: ubuntu-latest
name: Update the project version
steps:
- uses: actions/checkout@v2
- uses: lucasmelin/molting-release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```### Manually trigger a release
```yaml
name: molting release
on:
workflow_dispatch:
inputs:
version:
type: choice
description: Choose the type of release
options:
- patch
- minor
- majorjobs:
molting_job:
runs-on: ubuntu-latest
name: Update the project version
steps:
- uses: actions/checkout@v2
- uses: lucasmelin/molting-release-action@v1
with:
version: ${{ github.event.inputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```