mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-21 22:21:46 +00:00
24 lines
581 B
YAML
24 lines
581 B
YAML
name: Build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: docker://ffurrer/bats:latest
|
|
with:
|
|
args: "--recursive ."
|
|
- 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 }}
|