mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-07 10:46:56 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
92 lines
2.4 KiB
YAML
92 lines
2.4 KiB
YAML
name: Test Release
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- main
|
|
push:
|
|
|
|
schedule:
|
|
- cron: 0 2 * * 0
|
|
|
|
jobs:
|
|
test-semantic-latest:
|
|
name: test-semantic-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Semantic Release
|
|
uses: ./
|
|
id: semantic
|
|
with:
|
|
dry_run: true
|
|
branches: |
|
|
[
|
|
'+([0-9])?(.{+([0-9]),x}).x',
|
|
'master',
|
|
'main',
|
|
'next',
|
|
'next-major',
|
|
{
|
|
name: 'beta',
|
|
prerelease: true
|
|
},
|
|
{
|
|
name: 'alpha',
|
|
prerelease: true
|
|
}
|
|
]
|
|
extra_plugins: |
|
|
@semantic-release/git
|
|
@semantic-release/changelog
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Test Outputs
|
|
if: steps.semantic.outputs.new_release_published == 'true'
|
|
run: |
|
|
echo ${{ steps.semantic.outputs.new_release_version }}
|
|
echo ${{ steps.semantic.outputs.new_release_major_version }}
|
|
echo ${{ steps.semantic.outputs.new_release_minor_version }}
|
|
echo ${{ steps.semantic.outputs.new_release_patch_version }}
|
|
|
|
test-semantic-v15:
|
|
name: test-semantic-v15
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Semantic Release
|
|
uses: ./
|
|
id: semantic
|
|
with:
|
|
semantic_version: 15
|
|
dry_run: true
|
|
branches: |
|
|
[
|
|
'main',
|
|
{name: 'beta', prerelease: true},
|
|
{name: 'alpha', prerelease: true}
|
|
]
|
|
branch: main
|
|
extra_plugins: |
|
|
@semantic-release/git@7
|
|
@semantic-release/changelog@3
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Test Outputs
|
|
if: steps.semantic.outputs.new_release_published == 'true'
|
|
run: |
|
|
echo ${{ steps.semantic.outputs.new_release_version }}
|
|
echo ${{ steps.semantic.outputs.new_release_major_version }}
|
|
echo ${{ steps.semantic.outputs.new_release_minor_version }}
|
|
echo ${{ steps.semantic.outputs.new_release_patch_version }}
|
|
|
|
|