mirror of
https://github.com/jimeh/release-please-manifest-action.git
synced 2026-02-19 09:06:42 +00:00
21 lines
497 B
YAML
21 lines
497 B
YAML
---
|
|
name: Release
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
release-please:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: jimeh/release-please-manifest-action@v1
|
|
id: release
|
|
- name: MAJOR and MAJOR.MINOR tags
|
|
if: ${{ steps.release.outputs.release_created }}
|
|
uses: jimeh/update-tags-action@v1
|
|
with:
|
|
tags: |
|
|
v${{ steps.release.outputs.major }}
|
|
v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
|