mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-18 03:35:32 +00:00
22 lines
529 B
YAML
22 lines
529 B
YAML
name: Build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: ./.github/actions/bats
|
|
- uses: cycjimmy/semantic-release-action@v2
|
|
with:
|
|
semantic_version: 17.0.7
|
|
branches: |
|
|
[
|
|
'v1.1.x',
|
|
'v2.x'
|
|
]
|
|
extra_plugins: |
|
|
@semantic-release/changelog@5.0.1
|
|
@semantic-release/git@9.0.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|