mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-22 06:27:07 +00:00
17 lines
414 B
YAML
17 lines
414 B
YAML
name: ci
|
|
on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: ./.github/actions/bats
|
|
- uses: cycjimmy/semantic-release-action@v2
|
|
if: github.ref == 'refs/heads/master'
|
|
with:
|
|
extra_plugins: |
|
|
@semantic-release/git
|
|
@semantic-release/changelog
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|