mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-18 12:41:46 +00:00
17 lines
432 B
YAML
17 lines
432 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
|
|
if: github.ref == 'refs/heads/master'
|
|
with:
|
|
extra_plugins: |
|
|
@semantic-release/git
|
|
@semantic-release/changelog
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|